- adjust vid_fps by i_timescale to always show the real fps value

This commit is contained in:
Rachael Alexanderson 2025-08-30 05:57:53 -04:00
commit 2ee07d2df6
No known key found for this signature in database
GPG key ID: 26A8ACCE97115EE0

View file

@ -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.
{