mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
[vulkan] Fix incorrect cast
The result of an aborted attempt to get QF building for 32-bit windows.
This commit is contained in:
parent
0fb3167858
commit
1068685677
1 changed files with 1 additions and 1 deletions
|
@ -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); \
|
||||
} \
|
||||
|
|
Loading…
Reference in a new issue