From 12c6f97d80417b47656b18468826c9a6a298659a Mon Sep 17 00:00:00 2001 From: Rohit Nirmal Date: Fri, 3 Oct 2014 12:07:10 -0400 Subject: [PATCH] OGL: Silence string format warnings. --- Source/Core/VideoBackends/OGL/Render.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/VideoBackends/OGL/Render.cpp b/Source/Core/VideoBackends/OGL/Render.cpp index ba49db732a..92bca6bc65 100644 --- a/Source/Core/VideoBackends/OGL/Render.cpp +++ b/Source/Core/VideoBackends/OGL/Render.cpp @@ -719,9 +719,9 @@ void Renderer::DrawDebugInfo() debug_info += " - "; if (SConfig::GetInstance().m_ShowFrameCount) { - debug_info += StringFromFormat("Frame: %d", Movie::g_currentFrame); + debug_info += StringFromFormat("Frame: %lu", Movie::g_currentFrame); if (Movie::IsPlayingInput()) - debug_info += StringFromFormat(" / %d", Movie::g_totalFrames); + debug_info += StringFromFormat(" / %lu", Movie::g_totalFrames); } debug_info += "\n";