diff options
author | bunnei <bunneidev@gmail.com> | 2021-11-28 09:54:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-28 09:54:29 +0100 |
commit | be56587ad7cd56ef8254d552986c75436396bf30 (patch) | |
tree | 077ed5c0ccc3147e6fbf0c154e8ef99cc6ec31ec /src/common/settings.h | |
parent | Merge pull request #7255 from german77/kraken (diff) | |
parent | settings: Add debug setting to enable all controllers (diff) | |
download | yuzu-be56587ad7cd56ef8254d552986c75436396bf30.tar yuzu-be56587ad7cd56ef8254d552986c75436396bf30.tar.gz yuzu-be56587ad7cd56ef8254d552986c75436396bf30.tar.bz2 yuzu-be56587ad7cd56ef8254d552986c75436396bf30.tar.lz yuzu-be56587ad7cd56ef8254d552986c75436396bf30.tar.xz yuzu-be56587ad7cd56ef8254d552986c75436396bf30.tar.zst yuzu-be56587ad7cd56ef8254d552986c75436396bf30.zip |
Diffstat (limited to 'src/common/settings.h')
-rw-r--r-- | src/common/settings.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/settings.h b/src/common/settings.h index e4e049f67..313f1fa7f 100644 --- a/src/common/settings.h +++ b/src/common/settings.h @@ -604,6 +604,7 @@ struct Values { BasicSetting<bool> extended_logging{false, "extended_logging"}; BasicSetting<bool> use_debug_asserts{false, "use_debug_asserts"}; BasicSetting<bool> use_auto_stub{false, "use_auto_stub"}; + BasicSetting<bool> enable_all_controllers{false, "enable_all_controllers"}; // Miscellaneous BasicSetting<std::string> log_filter{"*:Info", "log_filter"}; |