diff options
| author | 2018-01-12 16:06:30 +0000 | |
|---|---|---|
| committer | 2018-01-12 17:48:52 -0500 | |
| commit | b628192bf27c871af3ecbf8982b4a13a78fd70c4 (patch) | |
| tree | a5d66996675378584d2324c48c8e3ef4c8f33a74 /src/citra/config.cpp | |
| parent | arm_dynarmic: Implement core (diff) | |
| download | yuzu-b628192bf27c871af3ecbf8982b4a13a78fd70c4.tar.gz yuzu-b628192bf27c871af3ecbf8982b4a13a78fd70c4.tar.xz yuzu-b628192bf27c871af3ecbf8982b4a13a78fd70c4.zip | |
configuration: Add cpu_core configuration option
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); |