[vulkan] Fix incorrect cast

The result of an aborted attempt to get QF building for 32-bit windows.
This commit is contained in:
Bill Currie 2021-03-29 19:55:05 +09:00
parent 0fb3167858
commit 1068685677
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@
if (dfunc->vkSetDebugUtilsObjectNameEXT) { \
VkDebugUtilsObjectNameInfoEXT nameInfo = { \
VK_STRUCTURE_TYPE_DEBUG_UTILS_OBJECT_NAME_INFO_EXT, 0, \
type, (VkObjectType) handle, name \
type, (uint64_t) handle, name \
}; \
dfunc->vkSetDebugUtilsObjectNameEXT (device->dev, &nameInfo); \
} \