From e7dce8e055c10332578e2f3c2b208d6e752ecbdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philip=20Dub=C3=A9?= Date: Wed, 18 Mar 2026 01:21:09 +0000 Subject: [PATCH] Keep StatsWindow fps rendered stable (#6368) --- soh/soh/Enhancements/debugger/SohStatsWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soh/soh/Enhancements/debugger/SohStatsWindow.cpp b/soh/soh/Enhancements/debugger/SohStatsWindow.cpp index 56f81bee4..8c68c3468 100644 --- a/soh/soh/Enhancements/debugger/SohStatsWindow.cpp +++ b/soh/soh/Enhancements/debugger/SohStatsWindow.cpp @@ -18,7 +18,7 @@ void SohStatsWindow::DrawElement() { #else ImGui::Text("Platform: Unknown"); #endif - ImGui::Text("Status: %.3f ms/frame (%.1f FPS)", deltatime * 1000.0f, framerate); + ImGui::Text("Status: %0.3f ms/frame (%0.1f FPS)", deltatime * 1000.0f, framerate); ImGui::PopStyleColor(); ImGui::PopFont(); }