summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/RenderBase.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2017-01-31 20:25:45 -0500
committerLioncash <mathew1800@gmail.com>2017-01-31 20:25:50 -0500
commit1f24cf2a2d7a69f1a089a8885d7e45c44b8d7d6d (patch)
treea73f3535b8184043de8b8afed99b22411ae32fe0 /Source/Core/VideoCommon/RenderBase.cpp
parent24951fde2bd5c7606934a0b2c775c70c92cd8e31 (diff)
RenderBase: Get rid of unnecessary casts
Diffstat (limited to 'Source/Core/VideoCommon/RenderBase.cpp')
-rw-r--r--Source/Core/VideoCommon/RenderBase.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/Source/Core/VideoCommon/RenderBase.cpp b/Source/Core/VideoCommon/RenderBase.cpp
index cf9c23f7b1..77b57c2f48 100644
--- a/Source/Core/VideoCommon/RenderBase.cpp
+++ b/Source/Core/VideoCommon/RenderBase.cpp
@@ -322,11 +322,10 @@ void Renderer::DrawDebugText()
final_cyan += " - ";
if (SConfig::GetInstance().m_ShowFrameCount)
{
- final_cyan += StringFromFormat("Frame: %llu", (unsigned long long)Movie::GetCurrentFrame());
+ final_cyan += StringFromFormat("Frame: %" PRIu64, Movie::GetCurrentFrame());
if (Movie::IsPlayingInput())
- final_cyan += StringFromFormat("\nInput: %llu / %llu",
- (unsigned long long)Movie::GetCurrentInputCount(),
- (unsigned long long)Movie::GetTotalInputCount());
+ final_cyan += StringFromFormat("\nInput: %" PRIu64 " / %" PRIu64,
+ Movie::GetCurrentInputCount(), Movie::GetTotalInputCount());
}
final_cyan += "\n";