mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 23:02:08 +00:00
- fixed bad Printf formatter.
This commit is contained in:
parent
1c9bf262e6
commit
b40983be61
1 changed files with 1 additions and 1 deletions
|
@ -375,7 +375,7 @@ VkBool32 VulkanDevice::DebugCallback(VkDebugUtilsMessageSeverityFlagBitsEXT mess
|
|||
if (callbackData->pObjects[i].pObjectName)
|
||||
{
|
||||
FString hexname;
|
||||
hexname.Format("0x%x", callbackData->pObjects[i].objectHandle);
|
||||
hexname.Format("0x%llx", callbackData->pObjects[i].objectHandle);
|
||||
msg.Substitute(hexname.GetChars(), callbackData->pObjects[i].pObjectName);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue