aboutsummaryrefslogtreecommitdiff
path: root/src/yuzu/startup_checks.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/yuzu/startup_checks.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/yuzu/startup_checks.h')
-rw-r--r--src/yuzu/startup_checks.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/startup_checks.h b/src/yuzu/startup_checks.h
index f2fc2d9d4..d8e563be6 100644
--- a/src/yuzu/startup_checks.h
+++ b/src/yuzu/startup_checks.h
@@ -13,7 +13,7 @@ constexpr char ENV_VAR_ENABLED_TEXT[] = "ON";
void CheckVulkan();
bool CheckEnvVars(bool* is_child);
-bool StartupChecks(const char* arg0, bool* has_broken_vulkan);
+bool StartupChecks(const char* arg0, bool* has_broken_vulkan, bool perform_vulkan_check);
#ifdef _WIN32
bool SpawnChild(const char* arg0, PROCESS_INFORMATION* pi, int flags);