diff options
author | Zach Hilman <DarkLordZach@users.noreply.github.com> | 2019-07-04 21:33:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-04 21:33:59 +0200 |
commit | 3f3a93f13b70959b6ba57b22bf8851b5c88929d4 (patch) | |
tree | 80e10cc0c85a02d82392b103b51c0e1d94d2adaf /src/yuzu_cmd | |
parent | Merge pull request #2555 from lioncash/tls (diff) | |
parent | yuzu: Remove CPU Jit setting from the UI (diff) | |
download | yuzu-3f3a93f13b70959b6ba57b22bf8851b5c88929d4.tar yuzu-3f3a93f13b70959b6ba57b22bf8851b5c88929d4.tar.gz yuzu-3f3a93f13b70959b6ba57b22bf8851b5c88929d4.tar.bz2 yuzu-3f3a93f13b70959b6ba57b22bf8851b5c88929d4.tar.lz yuzu-3f3a93f13b70959b6ba57b22bf8851b5c88929d4.tar.xz yuzu-3f3a93f13b70959b6ba57b22bf8851b5c88929d4.tar.zst yuzu-3f3a93f13b70959b6ba57b22bf8851b5c88929d4.zip |
Diffstat (limited to 'src/yuzu_cmd')
-rw-r--r-- | src/yuzu_cmd/config.cpp | 2 | ||||
-rw-r--r-- | src/yuzu_cmd/default_ini.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu_cmd/config.cpp b/src/yuzu_cmd/config.cpp index 8fe266f19..30b22341b 100644 --- a/src/yuzu_cmd/config.cpp +++ b/src/yuzu_cmd/config.cpp @@ -340,7 +340,7 @@ void Config::ReadValues() { } // Core - Settings::values.use_cpu_jit = sdl2_config->GetBoolean("Core", "use_cpu_jit", true); + Settings::values.cpu_jit_enabled = sdl2_config->GetBoolean("Core", "cpu_jit_enabled", true); Settings::values.use_multi_core = sdl2_config->GetBoolean("Core", "use_multi_core", false); // Renderer diff --git a/src/yuzu_cmd/default_ini.h b/src/yuzu_cmd/default_ini.h index b4f50d27d..4f1add434 100644 --- a/src/yuzu_cmd/default_ini.h +++ b/src/yuzu_cmd/default_ini.h @@ -78,7 +78,7 @@ touch_device= [Core] # Whether to use the Just-In-Time (JIT) compiler for CPU emulation # 0: Interpreter (slow), 1 (default): JIT (fast) -use_cpu_jit = +cpu_jit_enabled = # Whether to use multi-core for CPU emulation # 0 (default): Disabled, 1: Enabled |