diff options
Diffstat (limited to 'src/citra/config.cpp')
| -rw-r--r-- | src/citra/config.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/citra/config.cpp b/src/citra/config.cpp index 432bf2ced..e44931abd 100644 --- a/src/citra/config.cpp +++ b/src/citra/config.cpp | |||
| @@ -82,7 +82,8 @@ void Config::ReadValues() { | |||
| 82 | sdl2_config->Get("Controls", "touch_device", "engine:emu_window"); | 82 | sdl2_config->Get("Controls", "touch_device", "engine:emu_window"); |
| 83 | 83 | ||
| 84 | // Core | 84 | // Core |
| 85 | Settings::values.use_cpu_jit = sdl2_config->GetBoolean("Core", "use_cpu_jit", true); | 85 | Settings::values.cpu_core = |
| 86 | static_cast<Settings::CpuCore>(sdl2_config->GetInteger("Core", "cpu_core", 1)); | ||
| 86 | 87 | ||
| 87 | // Renderer | 88 | // Renderer |
| 88 | Settings::values.use_hw_renderer = sdl2_config->GetBoolean("Renderer", "use_hw_renderer", true); | 89 | Settings::values.use_hw_renderer = sdl2_config->GetBoolean("Renderer", "use_hw_renderer", true); |