- fixed bad Printf formatter.

This commit is contained in:
Christoph Oelckers 2019-03-26 08:48:10 +01:00
parent 1c9bf262e6
commit b40983be61

View file

@ -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);
}
}