summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/VertexLoaderBase.cpp
diff options
context:
space:
mode:
authorflacs <tilkax@gmail.com>2015-09-11 14:08:58 +0000
committerflacs <tilkax@gmail.com>2015-09-11 14:08:58 +0000
commitc07d672b31f119e17dabe68856e66ec62e87583c (patch)
tree824183d94473f38a8c0f73cdf6b65776c4cbe20a /Source/Core/VideoCommon/VertexLoaderBase.cpp
parentc319fbb98d8d53a601800a8082ec6a56425fc993 (diff)
parent19459e827f6c15f9429598015019ecb66f2e6cad (diff)
Merge pull request #3003 from dolphin-emu/revert-2961-printf
Partially revert "General: Toss out PRI macro usage"
Diffstat (limited to 'Source/Core/VideoCommon/VertexLoaderBase.cpp')
-rw-r--r--Source/Core/VideoCommon/VertexLoaderBase.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/VertexLoaderBase.cpp b/Source/Core/VideoCommon/VertexLoaderBase.cpp
index c23e9a1f36..681f43b4fa 100644
--- a/Source/Core/VideoCommon/VertexLoaderBase.cpp
+++ b/Source/Core/VideoCommon/VertexLoaderBase.cpp
@@ -173,7 +173,7 @@ public:
if (memcmp(buffer_a.data(), buffer_b.data(), std::min(count_a, count_b) * m_native_vtx_decl.stride))
ERROR_LOG(VIDEO, "The two vertex loaders have loaded different data "
- "(guru meditation 0x%016llx, 0x%08x, 0x%08x, 0x%08x).",
+ "(guru meditation 0x%016" PRIx64 ", 0x%08x, 0x%08x, 0x%08x).",
m_VtxDesc.Hex, m_vat.g0.Hex, m_vat.g1.Hex, m_vat.g2.Hex);
memcpy(dst.GetPointer(), buffer_a.data(), count_a * m_native_vtx_decl.stride);