From 7903415fa4369fbf0e8f415fbe9eb0017e0f7b3e Mon Sep 17 00:00:00 2001 From: Zephyron Date: Sat, 22 Feb 2025 19:07:16 +1000 Subject: [PATCH] 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. --- src/common/settings.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 use_debug_asserts{linkage, false, "use_debug_asserts", Category::Debugging}; Setting use_auto_stub{ - linkage, false, "use_auto_stub", Category::Debugging, Specialization::Default, false}; + linkage, true, "use_auto_stub", Category::Debugging, Specialization::Default, true}; Setting enable_all_controllers{linkage, false, "enable_all_controllers", Category::Debugging}; Setting perform_vulkan_check{linkage, true, "perform_vulkan_check", Category::Debugging};