mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-25 15:15:40 +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.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));
|
||||
|
||||
text.Clear();
|
||||
|
|
Loading…
Reference in a new issue