mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-15 14:47:57 -05:00
Use configuration files to enable or disable the new dyncom interpreter.
This commit is contained in:
@ -7,6 +7,7 @@
|
||||
#include "citra/default_ini.h"
|
||||
#include "common/file_util.h"
|
||||
#include "core/settings.h"
|
||||
#include "core/core.h"
|
||||
|
||||
#include "config.h"
|
||||
|
||||
@ -55,6 +56,10 @@ void Config::ReadControls() {
|
||||
Settings::values.pad_sright_key = glfw_config->GetInteger("Controls", "pad_sright", GLFW_KEY_RIGHT);
|
||||
}
|
||||
|
||||
void Config::ReadCore() {
|
||||
Settings::values.cpu_core = glfw_config->GetInteger("Core", "cpu_core", Core::CPU_Interpreter);
|
||||
}
|
||||
|
||||
void Config::ReadData() {
|
||||
Settings::values.use_virtual_sd = glfw_config->GetBoolean("Data Storage", "use_virtual_sd", true);
|
||||
}
|
||||
@ -62,6 +67,7 @@ void Config::ReadData() {
|
||||
void Config::Reload() {
|
||||
LoadINI(glfw_config, glfw_config_loc.c_str(), DefaultINI::glfw_config_file);
|
||||
ReadControls();
|
||||
ReadCore();
|
||||
ReadData();
|
||||
}
|
||||
|
||||
|
@ -16,6 +16,7 @@ class Config {
|
||||
|
||||
bool LoadINI(INIReader* config, const char* location, const std::string& default_contents="", bool retry=true);
|
||||
void ReadControls();
|
||||
void ReadCore();
|
||||
void ReadData();
|
||||
public:
|
||||
Config();
|
||||
|
@ -26,6 +26,9 @@ pad_sdown =
|
||||
pad_sleft =
|
||||
pad_sright =
|
||||
|
||||
[Core]
|
||||
cpu_core = ## 0: Interpreter (default), 1: DynCom Interpreter
|
||||
|
||||
[Data Storage]
|
||||
use_virtual_sd =
|
||||
)";
|
||||
|
Reference in New Issue
Block a user