print API version as hex, not decimal

This commit is contained in:
baldurk
2016-02-07 18:52:10 +01:00
parent f042c3912f
commit 17b28c7724
+1 -1
View File
@@ -4453,7 +4453,7 @@ ReplayCreateStatus Vulkan_CreateReplayDevice(const char *logfile, IReplayDriver
if(initParams.APIVersion != VK_API_VERSION)
{
RDCLOG("Captured API version is not the same as RenderDoc's built version, expected %d got %d", VK_API_VERSION, initParams.APIVersion);
RDCLOG("Captured API version is not the same as RenderDoc's built version, expected %x got %x", VK_API_VERSION, initParams.APIVersion);
RDCLOG("This isn't a problem as this information is optional, but RenderDoc will replay with its own API version");
}