summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/RenderBase.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2015-09-04 19:44:39 -0400
committerLioncash <mathew1800@gmail.com>2015-09-05 16:02:35 -0400
commit8fdb013d540cf5d79a23888053fda2897f997e61 (patch)
tree6ac7062b09950a1de6fca32c3319cd222487f242 /Source/Core/VideoCommon/RenderBase.cpp
parente01428935fe10cf8461a9b0acf6dab3635770173 (diff)
General: Toss out PRI macro usage
Now that VS supports more printf specifiers, these aren't necessary
Diffstat (limited to 'Source/Core/VideoCommon/RenderBase.cpp')
-rw-r--r--Source/Core/VideoCommon/RenderBase.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/RenderBase.cpp b/Source/Core/VideoCommon/RenderBase.cpp
index 55a6cb8760..a6f2897fe7 100644
--- a/Source/Core/VideoCommon/RenderBase.cpp
+++ b/Source/Core/VideoCommon/RenderBase.cpp
@@ -312,7 +312,7 @@ void Renderer::DrawDebugText()
if (SConfig::GetInstance().m_ShowLag)
{
- final_cyan += StringFromFormat("Lag: %" PRIu64 "\n", Movie::g_currentLagCount);
+ final_cyan += StringFromFormat("Lag: %llu\n", Movie::g_currentLagCount);
final_yellow += "\n";
}