mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-11 00:29:11 +01:00
Merge pull request #1214 from rohit-n/format-warning
OGL: Silence string format warnings.
This commit is contained in:
commit
215685a6fe
@ -719,9 +719,9 @@ void Renderer::DrawDebugInfo()
|
|||||||
debug_info += " - ";
|
debug_info += " - ";
|
||||||
if (SConfig::GetInstance().m_ShowFrameCount)
|
if (SConfig::GetInstance().m_ShowFrameCount)
|
||||||
{
|
{
|
||||||
debug_info += StringFromFormat("Frame: %d", Movie::g_currentFrame);
|
debug_info += StringFromFormat("Frame: %lu", Movie::g_currentFrame);
|
||||||
if (Movie::IsPlayingInput())
|
if (Movie::IsPlayingInput())
|
||||||
debug_info += StringFromFormat(" / %d", Movie::g_totalFrames);
|
debug_info += StringFromFormat(" / %lu", Movie::g_totalFrames);
|
||||||
}
|
}
|
||||||
|
|
||||||
debug_info += "\n";
|
debug_info += "\n";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user