mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-03-06 14:27:44 +00:00
ImGuiOverlays: Fix incorrect frame time order
This commit is contained in:
parent
af5d49649c
commit
559f14d27d
|
@ -249,7 +249,7 @@ void ImGuiManager::DrawPerformanceOverlay()
|
||||||
{
|
{
|
||||||
text.Clear();
|
text.Clear();
|
||||||
text.AppendFmtString("{:.2f}ms | {:.2f}ms | {:.2f}ms", System::GetMinimumFrameTime(),
|
text.AppendFmtString("{:.2f}ms | {:.2f}ms | {:.2f}ms", System::GetMinimumFrameTime(),
|
||||||
System::GetMaximumFrameTime(), System::GetAverageFrameTime());
|
System::GetAverageFrameTime(), System::GetMaximumFrameTime());
|
||||||
DRAW_LINE(fixed_font, text, IM_COL32(255, 255, 255, 255));
|
DRAW_LINE(fixed_font, text, IM_COL32(255, 255, 255, 255));
|
||||||
|
|
||||||
text.Clear();
|
text.Clear();
|
||||||
|
|
Loading…
Reference in a new issue