aboutsummaryrefslogtreecommitdiff
path: root/src/common/settings.h
diff options
context:
space:
mode:
authorlat9nq <22451773+lat9nq@users.noreply.github.com>2022-09-19 14:46:12 -0400
committerlat9nq <22451773+lat9nq@users.noreply.github.com>2022-09-19 14:46:12 -0400
commit89af4bfba8de738c139440f30dd3812283f19b76 (patch)
tree357d72ccbfec1370618c38e82f52484a7f2bb3cd /src/common/settings.h
parent3a5f9409c897f12e69cfc1d395e743b4850330ec (diff)
yuzu qt: Add option to disable startup Vulkan check
The startup check apparently confuses other programs when yuzu launches 2 processes and then quickly closes one of them. Though this isn't really our issues it's also not a big deal for me to add an option to work around that issue.
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 851812f28b..d2452c93bb 100644
--- a/src/common/settings.h
+++ b/src/common/settings.h
@@ -531,6 +531,7 @@ struct Values {
Setting<bool> use_auto_stub{false, "use_auto_stub"};
Setting<bool> enable_all_controllers{false, "enable_all_controllers"};
Setting<bool> create_crash_dumps{false, "create_crash_dumps"};
+ Setting<bool> perform_vulkan_check{true, "perform_vulkan_check"};
// Miscellaneous
Setting<std::string> log_filter{"*:Info", "log_filter"};