Vulkan/Win32: Fix compile error.

This commit is contained in:
BearOso 2024-06-13 16:50:12 -05:00
parent 008cbcd1a1
commit a9e64edf73
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ bool CVulkan::ChangeRenderSize(unsigned int newWidth, unsigned int newHeight)
if (!context)
return false;
if (newWidth != current_width || newHeight != current_height || vsync_changed)
if (newWidth != current_width || newHeight != current_height)
{
context->recreate_swapchain(newWidth, newHeight);
context->wait_idle();