Merge pull request #4287 from shuffle2/typo-fix

Follow-up for OSD cleanup
This commit is contained in:
shuffle2 2016-10-03 20:43:44 -07:00 committed by GitHub
commit 6bff97ea30
1 changed files with 2 additions and 2 deletions

View File

@ -313,12 +313,12 @@ void Renderer::DrawDebugText()
if (SConfig::GetInstance().m_ShowFrameCount)
{
draw_text(OSD::MessageType::FrameCount,
StringFromFormat("Frame: %" PRIx64, Movie::GetCurrentFrame()));
StringFromFormat("Frame: %" PRIu64, Movie::GetCurrentFrame()));
if (Movie::IsPlayingInput())
{
draw_text(OSD::MessageType::MovieInputCount,
StringFromFormat("Input: %" PRIx64 " / %" PRIx64, Movie::GetCurrentInputCount(),
StringFromFormat("Input: %" PRIu64 " / %" PRIu64, Movie::GetCurrentInputCount(),
Movie::GetTotalInputCount()));
}
}