mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-03 06:39:33 +00:00
Follow-up for OSD cleanup:
people probably want to see decimal instead of hex...
This commit is contained in:
parent
5c0fa4db4f
commit
c11aba296c
1 changed files with 2 additions and 2 deletions
|
@ -313,12 +313,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: %" PRIx64, Movie::GetCurrentFrame()));
|
StringFromFormat("Frame: %" PRIu64, Movie::GetCurrentFrame()));
|
||||||
|
|
||||||
if (Movie::IsPlayingInput())
|
if (Movie::IsPlayingInput())
|
||||||
{
|
{
|
||||||
draw_text(OSD::MessageType::MovieInputCount,
|
draw_text(OSD::MessageType::MovieInputCount,
|
||||||
StringFromFormat("Input: %" PRIx64 " / %" PRIx64, Movie::GetCurrentInputCount(),
|
StringFromFormat("Input: %" PRIu64 " / %" PRIu64, Movie::GetCurrentInputCount(),
|
||||||
Movie::GetTotalInputCount()));
|
Movie::GetTotalInputCount()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue