From 9e37eddfd05bf6bc94579b3ae88e0b27ae09bd03 Mon Sep 17 00:00:00 2001 From: Anders Jenbo Date: Tue, 12 Nov 2019 18:14:18 +0100 Subject: [PATCH] Uncap FPS counter --- Source/scrollrt.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Source/scrollrt.cpp b/Source/scrollrt.cpp index 151448c9d..f467b3300 100644 --- a/Source/scrollrt.cpp +++ b/Source/scrollrt.cpp @@ -1060,9 +1060,7 @@ static void DrawFPS() framerate = 1000 * frameend / frames; frameend = 0; } - if (framerate > 99) - framerate = 99; - wsprintf(String, "%2d FPS", framerate); + wsprintf(String, "%d FPS", framerate); PrintGameStr(8, 65, String, COL_RED); } }