mirror of https://github.com/PCSX2/pcsx2.git
GS/Vulkan: Re-enable async presentation
This commit is contained in:
parent
c06d4f477a
commit
d8239664a8
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue