mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Revert "Merge pull request #4287 from shuffle2/typo-fix"
This reverts commit6bff97ea30
, reversing changes made to5c0fa4db4f
.
This commit is contained in:
@ -320,12 +320,12 @@ void Renderer::DrawDebugText()
|
|||||||
if (SConfig::GetInstance().m_ShowFrameCount)
|
if (SConfig::GetInstance().m_ShowFrameCount)
|
||||||
{
|
{
|
||||||
draw_text(OSD::MessageType::FrameCount,
|
draw_text(OSD::MessageType::FrameCount,
|
||||||
StringFromFormat("Frame: %" PRIu64, Movie::GetCurrentFrame()));
|
StringFromFormat("Frame: %" PRIx64, Movie::GetCurrentFrame()));
|
||||||
|
|
||||||
if (Movie::IsPlayingInput())
|
if (Movie::IsPlayingInput())
|
||||||
{
|
{
|
||||||
draw_text(OSD::MessageType::MovieInputCount,
|
draw_text(OSD::MessageType::MovieInputCount,
|
||||||
StringFromFormat("Input: %" PRIu64 " / %" PRIu64, Movie::GetCurrentInputCount(),
|
StringFromFormat("Input: %" PRIx64 " / %" PRIx64, Movie::GetCurrentInputCount(),
|
||||||
Movie::GetTotalInputCount()));
|
Movie::GetTotalInputCount()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user