summaryrefslogtreecommitdiff
path: root/src/common/settings.h
diff options
context:
space:
mode:
authorGravatar german772021-11-27 20:05:45 -0600
committerGravatar german772021-11-27 20:24:37 -0600
commit51df96b7c0ac7086b26fa766e87e18749e0395b1 (patch)
tree077ed5c0ccc3147e6fbf0c154e8ef99cc6ec31ec /src/common/settings.h
parentMerge pull request #7255 from german77/kraken (diff)
downloadyuzu-51df96b7c0ac7086b26fa766e87e18749e0395b1.tar.gz
yuzu-51df96b7c0ac7086b26fa766e87e18749e0395b1.tar.xz
yuzu-51df96b7c0ac7086b26fa766e87e18749e0395b1.zip
settings: Add debug setting to enable all controllers
Diffstat (limited to 'src/common/settings.h')
-rw-r--r--src/common/settings.h1
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 {
604 BasicSetting<bool> extended_logging{false, "extended_logging"}; 604 BasicSetting<bool> extended_logging{false, "extended_logging"};
605 BasicSetting<bool> use_debug_asserts{false, "use_debug_asserts"}; 605 BasicSetting<bool> use_debug_asserts{false, "use_debug_asserts"};
606 BasicSetting<bool> use_auto_stub{false, "use_auto_stub"}; 606 BasicSetting<bool> use_auto_stub{false, "use_auto_stub"};
607 BasicSetting<bool> enable_all_controllers{false, "enable_all_controllers"};
607 608
608 // Miscellaneous 609 // Miscellaneous
609 BasicSetting<std::string> log_filter{"*:Info", "log_filter"}; 610 BasicSetting<std::string> log_filter{"*:Info", "log_filter"};