diff options
author | Zephyron <zephyron@citron-emu.orgq> | 2025-02-24 19:05:05 +1000 |
---|---|---|
committer | Zephyron <zephyron@citron-emu.orgq> | 2025-02-24 19:05:05 +1000 |
commit | ed115d3f726c88697eaa6f9c2535a89d877efa9a (patch) | |
tree | 3ac84908ff2d08df4a0814b2757d6c50c7e9e37a /src | |
parent | d9619b7eed13adc4bac329bf4b46ee254fe7a5a6 (diff) |
Revert "settings: Enable auto-stub by default"
This reverts commit 7903415fa4369fbf0e8f415fbe9eb0017e0f7b3e.
Diffstat (limited to 'src')
-rw-r--r-- | src/common/settings.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/settings.h b/src/common/settings.h index c3a5b8fce..06253ed25 100644 --- a/src/common/settings.h +++ b/src/common/settings.h @@ -595,7 +595,7 @@ struct Values { linkage, false, "extended_logging", Category::Debugging, Specialization::Default, false}; Setting<bool> use_debug_asserts{linkage, false, "use_debug_asserts", Category::Debugging}; Setting<bool> use_auto_stub{ - linkage, true, "use_auto_stub", Category::Debugging, Specialization::Default, true}; + linkage, false, "use_auto_stub", Category::Debugging, Specialization::Default, false}; Setting<bool> enable_all_controllers{linkage, false, "enable_all_controllers", Category::Debugging}; Setting<bool> perform_vulkan_check{linkage, true, "perform_vulkan_check", Category::Debugging}; |