fix another bug

This commit is contained in:
Matthew 2025-11-02 14:16:54 +11:00
parent 361aafa206
commit 27d9c19d11

View File

@ -355,7 +355,7 @@ enum PresentMode : VkPresentModeKHR
Vsync = VK_PRESENT_MODE_FIFO_KHR, Vsync = VK_PRESENT_MODE_FIFO_KHR,
NoVsync = VK_PRESENT_MODE_IMMEDIATE_KHR, NoVsync = VK_PRESENT_MODE_IMMEDIATE_KHR,
VsyncUncapped = VK_PRESENT_MODE_MAILBOX_KHR, VsyncUncapped = VK_PRESENT_MODE_MAILBOX_KHR,
VsyncRelaxed = VK_PRESENT_MODE_RELAXED_KHR, VsyncRelaxed = VK_PRESENT_MODE_FIFO_RELAXED_KHR,
Max, Max,
} }