GS/Vulkan: Re-enable async presentation

This commit is contained in:
Stenzek 2023-04-27 12:59:03 +10:00 committed by refractionpcsx2
parent c06d4f477a
commit d8239664a8
1 changed files with 2 additions and 2 deletions

View File

@ -645,8 +645,8 @@ bool GSDeviceVK::CreateDeviceAndSwapChain()
return false;
}
if (!Vulkan::Context::Create(instance, surface, gpus[gpu_index], enable_debug_utils, enable_validation_layer,
!GSConfig.DisableThreadedPresentation))
if (!Vulkan::Context::Create(instance, surface, gpus[gpu_index], !GSConfig.DisableThreadedPresentation,
enable_debug_utils, enable_validation_layer))
{
Console.Error("Failed to create Vulkan context");
return false;