mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-13 07:49:19 +01:00
RenderBase: Get rid of unnecessary casts
This commit is contained in:
parent
24951fde2b
commit
1f24cf2a2d
@ -322,11 +322,10 @@ void Renderer::DrawDebugText()
|
||||
final_cyan += " - ";
|
||||
if (SConfig::GetInstance().m_ShowFrameCount)
|
||||
{
|
||||
final_cyan += StringFromFormat("Frame: %llu", (unsigned long long)Movie::GetCurrentFrame());
|
||||
final_cyan += StringFromFormat("Frame: %" PRIu64, Movie::GetCurrentFrame());
|
||||
if (Movie::IsPlayingInput())
|
||||
final_cyan += StringFromFormat("\nInput: %llu / %llu",
|
||||
(unsigned long long)Movie::GetCurrentInputCount(),
|
||||
(unsigned long long)Movie::GetTotalInputCount());
|
||||
final_cyan += StringFromFormat("\nInput: %" PRIu64 " / %" PRIu64,
|
||||
Movie::GetCurrentInputCount(), Movie::GetTotalInputCount());
|
||||
}
|
||||
|
||||
final_cyan += "\n";
|
||||
|
Loading…
x
Reference in New Issue
Block a user