summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorZephyron <zephyron@citron-emu.orgq>2025-02-22 19:07:16 +1000
committerZephyron <zephyron@citron-emu.orgq>2025-02-22 19:07:16 +1000
commit7903415fa4369fbf0e8f415fbe9eb0017e0f7b3e (patch)
tree3f392af84cf8312abd72d3c024e82dd9704afc05 /src
parent3bb4d97e9e188b7ff9f0ea1084b67e8acec429f6 (diff)
settings: Enable auto-stub by default
Changes the default value of use_auto_stub from false to true in the settings. This setting controls whether unimplemented functions should be automatically stubbed during execution.
Diffstat (limited to 'src')
-rw-r--r--src/common/settings.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/settings.h b/src/common/settings.h
index 06253ed25..c3a5b8fce 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, false, "use_auto_stub", Category::Debugging, Specialization::Default, false};
+ linkage, true, "use_auto_stub", Category::Debugging, Specialization::Default, true};
Setting<bool> enable_all_controllers{linkage, false, "enable_all_controllers",
Category::Debugging};
Setting<bool> perform_vulkan_check{linkage, true, "perform_vulkan_check", Category::Debugging};