Windows: Fix Vulkan out of process check.

Oops, forgot to actually pass false after adding this argument...
This commit is contained in:
Unknown W. Brackets 2019-06-30 23:45:14 -07:00
parent 528d04defe
commit 7588a9760e

View File

@ -572,7 +572,7 @@ int WINAPI WinMain(HINSTANCE _hInstance, HINSTANCE hPrevInstance, LPSTR szCmdLin
#ifndef _DEBUG
// See #11719 - too many Vulkan drivers crash on basic init.
if (g_Config.IsBackendEnabled(GPUBackend::VULKAN)) {
if (g_Config.IsBackendEnabled(GPUBackend::VULKAN, false)) {
VulkanSetAvailable(DetectVulkanInExternalProcess());
}
#endif