diff options
| author | 2020-06-04 11:40:52 -0400 | |
|---|---|---|
| committer | 2020-06-04 11:40:52 -0400 | |
| commit | 34d4abc4f9c264fb4dfc32b9b44aaeecaa4695a0 (patch) | |
| tree | 95b864039ba58c858b0bb89c2eb6b56a25475d22 /src/yuzu_cmd/config.cpp | |
| parent | Merge pull request #4039 from FearlessTobi/port-5376 (diff) | |
| parent | Default init labels and use initializer list for macro engine (diff) | |
| download | yuzu-34d4abc4f9c264fb4dfc32b9b44aaeecaa4695a0.tar.gz yuzu-34d4abc4f9c264fb4dfc32b9b44aaeecaa4695a0.tar.xz yuzu-34d4abc4f9c264fb4dfc32b9b44aaeecaa4695a0.zip | |
Merge pull request #4009 from ogniK5377/macro-jit-prod
video_core: Implement Macro JIT
Diffstat (limited to 'src/yuzu_cmd/config.cpp')
| -rw-r--r-- | src/yuzu_cmd/config.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/yuzu_cmd/config.cpp b/src/yuzu_cmd/config.cpp index c20d48c42..7240270f5 100644 --- a/src/yuzu_cmd/config.cpp +++ b/src/yuzu_cmd/config.cpp | |||
| @@ -432,6 +432,8 @@ void Config::ReadValues() { | |||
| 432 | Settings::values.quest_flag = sdl2_config->GetBoolean("Debugging", "quest_flag", false); | 432 | Settings::values.quest_flag = sdl2_config->GetBoolean("Debugging", "quest_flag", false); |
| 433 | Settings::values.disable_cpu_opt = | 433 | Settings::values.disable_cpu_opt = |
| 434 | sdl2_config->GetBoolean("Debugging", "disable_cpu_opt", false); | 434 | sdl2_config->GetBoolean("Debugging", "disable_cpu_opt", false); |
| 435 | Settings::values.disable_macro_jit = | ||
| 436 | sdl2_config->GetBoolean("Debugging", "disable_macro_jit", false); | ||
| 435 | 437 | ||
| 436 | const auto title_list = sdl2_config->Get("AddOns", "title_ids", ""); | 438 | const auto title_list = sdl2_config->Get("AddOns", "title_ids", ""); |
| 437 | std::stringstream ss(title_list); | 439 | std::stringstream ss(title_list); |