diff options
author | bunnei <bunneidev@gmail.com> | 2019-07-04 01:40:41 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-04 01:40:41 -0400 |
commit | 70b595a63b53e657ec2fe6640d16f20cb24d433e (patch) | |
tree | 7bf36adf74934bca8551a7f582882c722271da17 /src/yuzu_cmd/config.cpp | |
parent | beb3d77a79e248212c4645f1e42cac7f46538bda (diff) | |
parent | f477c5dfdd755744d16b639869cd1d9c78750880 (diff) |
Merge pull request #2638 from DarkLordZach/quest-flag
set: Implement GetQuestFlag with config option
Diffstat (limited to 'src/yuzu_cmd/config.cpp')
-rw-r--r-- | src/yuzu_cmd/config.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/yuzu_cmd/config.cpp b/src/yuzu_cmd/config.cpp index 9ac92e937..8fe266f19 100644 --- a/src/yuzu_cmd/config.cpp +++ b/src/yuzu_cmd/config.cpp @@ -383,6 +383,7 @@ void Config::ReadValues() { Settings::values.dump_nso = sdl2_config->GetBoolean("Debugging", "dump_nso", false); Settings::values.reporting_services = sdl2_config->GetBoolean("Debugging", "reporting_services", false); + Settings::values.quest_flag = sdl2_config->GetBoolean("Debugging", "quest_flag", false); const auto title_list = sdl2_config->Get("AddOns", "title_ids", ""); std::stringstream ss(title_list); |