From e64ba6870b482e4b9d8224cb4cfc21f5181a13dd Mon Sep 17 00:00:00 2001 From: Kbz-8 Date: Sun, 11 Jan 2026 12:43:13 +0100 Subject: [PATCH] fixing compilation --- kvf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kvf.h b/kvf.h index 4ca93ab..d21c93c 100755 --- a/kvf.h +++ b/kvf.h @@ -1166,7 +1166,7 @@ const char* kvfVerbaliseVkResult(VkResult result) case VK_ERROR_OUT_OF_DATE_KHR: return "A surface has changed in such a way that it is no longer compatible with the swapchain"; case VK_ERROR_INCOMPATIBLE_DISPLAY_KHR: return "The display used by a swapchain does not use the same presentable image layout"; case VK_ERROR_NATIVE_WINDOW_IN_USE_KHR: return "The requested window is already connected to a VkSurfaceKHR, or to some other non-Vulkan API"; - case VK_ERROR_VALIDATION_FAILED: return "A command failed because invalid usage was detected by the implementation or a validation layer."; + case VK_ERROR_VALIDATION_FAILED_EXT: return "A command failed because invalid usage was detected by the implementation or a validation layer."; default: return "Unknown Vulkan error"; }