summaryrefslogtreecommitdiffstats
path: root/src/yuzu_cmd/config.cpp
diff options
context:
space:
mode:
authorMat M <mathew1800@gmail.com>2020-04-20 20:19:18 +0200
committerGitHub <noreply@github.com>2020-04-20 20:19:18 +0200
commit200f69d2ffa11bb902c2d9cabb49027f4781fe11 (patch)
tree028ddae62e98d6498ecd9363f020717cf22b05ea /src/yuzu_cmd/config.cpp
parentMerge pull request #3741 from FearlessTobi/silence-warnings (diff)
parentdynarmic: Add option to disable CPU JIT optimizations (diff)
downloadyuzu-200f69d2ffa11bb902c2d9cabb49027f4781fe11.tar
yuzu-200f69d2ffa11bb902c2d9cabb49027f4781fe11.tar.gz
yuzu-200f69d2ffa11bb902c2d9cabb49027f4781fe11.tar.bz2
yuzu-200f69d2ffa11bb902c2d9cabb49027f4781fe11.tar.lz
yuzu-200f69d2ffa11bb902c2d9cabb49027f4781fe11.tar.xz
yuzu-200f69d2ffa11bb902c2d9cabb49027f4781fe11.tar.zst
yuzu-200f69d2ffa11bb902c2d9cabb49027f4781fe11.zip
Diffstat (limited to '')
-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() {
Settings::values.reporting_services =
sdl2_config->GetBoolean("Debugging", "reporting_services", false);
Settings::values.quest_flag = sdl2_config->GetBoolean("Debugging", "quest_flag", false);
+ Settings::values.disable_cpu_opt =
+ sdl2_config->GetBoolean("Debugging", "disable_cpu_opt", false);
const auto title_list = sdl2_config->Get("AddOns", "title_ids", "");
std::stringstream ss(title_list);