From a68d5aae7046dfc844be0a12c4ea3898a30ce229 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Sat, 24 Jul 2021 15:28:58 +1000 Subject: [PATCH] - Add leading zero to `statFPS()` output (`vid_fps`) so that the text doesn't bounce continually when alternating between 10 ms and <10 ms. --- source/core/gamehud.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/core/gamehud.cpp b/source/core/gamehud.cpp index e1ced1918..12378f317 100644 --- a/source/core/gamehud.cpp +++ b/source/core/gamehud.cpp @@ -107,7 +107,7 @@ static FString statFPS() frameCount++; if (frameDelay >= 0) { - output.AppendFormat("%5.1f fps (%.1f ms)\n", lastFPS, frameDelay); + output.AppendFormat("%5.1f fps (%04.1f ms)\n", lastFPS, frameDelay); if (cumulativeFrameDelay >= 1000.0) {