Merge pull request #2669 from FearlessTobi/move-cpujit-setting

yuzu: Move CPU Jit setting to Debug tab
This commit is contained in:
Zach Hilman
2019-07-04 15:33:59 -04:00
committed by GitHub
11 changed files with 12 additions and 36 deletions

View File

@ -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

View File

@ -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