mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-28 15:02:39 +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)
|
if (callbackData->pObjects[i].pObjectName)
|
||||||
{
|
{
|
||||||
FString hexname;
|
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);
|
msg.Substitute(hexname.GetChars(), callbackData->pObjects[i].pObjectName);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue