diff options
Diffstat (limited to 'src/yuzu_cmd/config.cpp')
| -rw-r--r-- | src/yuzu_cmd/config.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/yuzu_cmd/config.cpp b/src/yuzu_cmd/config.cpp index f3817bb87..30b22341b 100644 --- a/src/yuzu_cmd/config.cpp +++ b/src/yuzu_cmd/config.cpp | |||
| @@ -340,7 +340,7 @@ void Config::ReadValues() { | |||
| 340 | } | 340 | } |
| 341 | 341 | ||
| 342 | // Core | 342 | // Core |
| 343 | Settings::values.use_cpu_jit = sdl2_config->GetBoolean("Core", "use_cpu_jit", true); | 343 | Settings::values.cpu_jit_enabled = sdl2_config->GetBoolean("Core", "cpu_jit_enabled", true); |
| 344 | Settings::values.use_multi_core = sdl2_config->GetBoolean("Core", "use_multi_core", false); | 344 | Settings::values.use_multi_core = sdl2_config->GetBoolean("Core", "use_multi_core", false); |
| 345 | 345 | ||
| 346 | // Renderer | 346 | // Renderer |
| @@ -381,6 +381,9 @@ void Config::ReadValues() { | |||
| 381 | Settings::values.program_args = sdl2_config->Get("Debugging", "program_args", ""); | 381 | Settings::values.program_args = sdl2_config->Get("Debugging", "program_args", ""); |
| 382 | Settings::values.dump_exefs = sdl2_config->GetBoolean("Debugging", "dump_exefs", false); | 382 | Settings::values.dump_exefs = sdl2_config->GetBoolean("Debugging", "dump_exefs", false); |
| 383 | Settings::values.dump_nso = sdl2_config->GetBoolean("Debugging", "dump_nso", false); | 383 | Settings::values.dump_nso = sdl2_config->GetBoolean("Debugging", "dump_nso", false); |
| 384 | Settings::values.reporting_services = | ||
| 385 | sdl2_config->GetBoolean("Debugging", "reporting_services", false); | ||
| 386 | Settings::values.quest_flag = sdl2_config->GetBoolean("Debugging", "quest_flag", false); | ||
| 384 | 387 | ||
| 385 | const auto title_list = sdl2_config->Get("AddOns", "title_ids", ""); | 388 | const auto title_list = sdl2_config->Get("AddOns", "title_ids", ""); |
| 386 | std::stringstream ss(title_list); | 389 | std::stringstream ss(title_list); |