summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/RenderBase.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/VideoCommon/RenderBase.cpp')
-rw-r--r--Source/Core/VideoCommon/RenderBase.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/RenderBase.cpp b/Source/Core/VideoCommon/RenderBase.cpp
index d0bf77e0db..519e4fcbc6 100644
--- a/Source/Core/VideoCommon/RenderBase.cpp
+++ b/Source/Core/VideoCommon/RenderBase.cpp
@@ -320,12 +320,12 @@ void Renderer::DrawDebugText()
if (SConfig::GetInstance().m_ShowFrameCount)
{
draw_text(OSD::MessageType::FrameCount,
- StringFromFormat("Frame: %" PRIu64, Movie::GetCurrentFrame()));
+ StringFromFormat("Frame: %" PRIx64, Movie::GetCurrentFrame()));
if (Movie::IsPlayingInput())
{
draw_text(OSD::MessageType::MovieInputCount,
- StringFromFormat("Input: %" PRIu64 " / %" PRIu64, Movie::GetCurrentInputCount(),
+ StringFromFormat("Input: %" PRIx64 " / %" PRIx64, Movie::GetCurrentInputCount(),
Movie::GetTotalInputCount()));
}
}