summaryrefslogtreecommitdiff
path: root/src/yuzu_cmd/config.cpp
diff options
context:
space:
mode:
authorGravatar MerryMage2020-04-20 13:34:29 +0100
committerGravatar MerryMage2020-04-20 13:36:26 +0100
commita3a12deecca6c2c9d980d76c44f54f27a78513b4 (patch)
tree993f56fb1fd682a310ee59b699a04a21925f73f0 /src/yuzu_cmd/config.cpp
parentMerge pull request #3686 from lioncash/table (diff)
downloadyuzu-a3a12deecca6c2c9d980d76c44f54f27a78513b4.tar.gz
yuzu-a3a12deecca6c2c9d980d76c44f54f27a78513b4.tar.xz
yuzu-a3a12deecca6c2c9d980d76c44f54f27a78513b4.zip
dynarmic: Add option to disable CPU JIT optimizations
Diffstat (limited to 'src/yuzu_cmd/config.cpp')
-rw-r--r--src/yuzu_cmd/config.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/yuzu_cmd/config.cpp b/src/yuzu_cmd/config.cpp
index f4cd905c9..80341747f 100644
--- a/src/yuzu_cmd/config.cpp
+++ b/src/yuzu_cmd/config.cpp
@@ -425,6 +425,8 @@ void Config::ReadValues() {
425 Settings::values.reporting_services = 425 Settings::values.reporting_services =
426 sdl2_config->GetBoolean("Debugging", "reporting_services", false); 426 sdl2_config->GetBoolean("Debugging", "reporting_services", false);
427 Settings::values.quest_flag = sdl2_config->GetBoolean("Debugging", "quest_flag", false); 427 Settings::values.quest_flag = sdl2_config->GetBoolean("Debugging", "quest_flag", false);
428 Settings::values.disable_cpu_opt =
429 sdl2_config->GetBoolean("Debugging", "disable_cpu_opt", false);
428 430
429 const auto title_list = sdl2_config->Get("AddOns", "title_ids", ""); 431 const auto title_list = sdl2_config->Get("AddOns", "title_ids", "");
430 std::stringstream ss(title_list); 432 std::stringstream ss(title_list);