From 2ee07d2df621682ff946c16c90312d55022a6efb Mon Sep 17 00:00:00 2001 From: Rachael Alexanderson Date: Sat, 30 Aug 2025 05:57:53 -0400 Subject: [PATCH] - adjust vid_fps by i_timescale to always show the real fps value --- src/d_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/d_main.cpp b/src/d_main.cpp index df64adb84..06d27e2ba 100644 --- a/src/d_main.cpp +++ b/src/d_main.cpp @@ -811,7 +811,7 @@ void CalcFps() { static uint64_t LastMS = 0, LastSec = 0, FrameCount = 0, LastTic = 0; - uint64_t ms = screen->FrameTime; + uint64_t ms = screen->FrameTime / i_timescale; uint64_t howlong = ms - LastMS; if ((signed)howlong > 0) // do this only once per frame. {