diff options
| author | 2018-05-03 00:34:54 -0400 | |
|---|---|---|
| committer | 2018-05-10 19:34:47 -0400 | |
| commit | 9bf2a428f9e9359763be1bfd90c32371044c711e (patch) | |
| tree | 89188fea0b3457421fe203cc7a2754523d0acf04 /src/yuzu_cmd/config.cpp | |
| parent | core: Support session close with multicore. (diff) | |
| download | yuzu-9bf2a428f9e9359763be1bfd90c32371044c711e.tar.gz yuzu-9bf2a428f9e9359763be1bfd90c32371044c711e.tar.xz yuzu-9bf2a428f9e9359763be1bfd90c32371044c711e.zip | |
core: Add a configuration setting for use_multi_core.
Diffstat (limited to 'src/yuzu_cmd/config.cpp')
| -rw-r--r-- | src/yuzu_cmd/config.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/yuzu_cmd/config.cpp b/src/yuzu_cmd/config.cpp index 675f9cafa..ee6e4d658 100644 --- a/src/yuzu_cmd/config.cpp +++ b/src/yuzu_cmd/config.cpp | |||
| @@ -91,6 +91,7 @@ void Config::ReadValues() { | |||
| 91 | 91 | ||
| 92 | // Core | 92 | // Core |
| 93 | Settings::values.use_cpu_jit = sdl2_config->GetBoolean("Core", "use_cpu_jit", true); | 93 | Settings::values.use_cpu_jit = sdl2_config->GetBoolean("Core", "use_cpu_jit", true); |
| 94 | Settings::values.use_multi_core = sdl2_config->GetBoolean("Core", "use_multi_core", false); | ||
| 94 | 95 | ||
| 95 | // Renderer | 96 | // Renderer |
| 96 | Settings::values.resolution_factor = | 97 | Settings::values.resolution_factor = |