From 17b28c7724f60d78999ba24d85c868b9c416b771 Mon Sep 17 00:00:00 2001 From: baldurk Date: Wed, 3 Feb 2016 22:32:03 +0100 Subject: [PATCH] print API version as hex, not decimal --- renderdoc/driver/vulkan/vk_replay.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renderdoc/driver/vulkan/vk_replay.cpp b/renderdoc/driver/vulkan/vk_replay.cpp index c939b5af8..23e973ee1 100644 --- a/renderdoc/driver/vulkan/vk_replay.cpp +++ b/renderdoc/driver/vulkan/vk_replay.cpp @@ -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"); }