Timer fix

This commit is contained in:
Sergeanur 2020-10-23 08:38:36 +03:00
parent 08d78fb6ff
commit 281e45ce01
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ void CTimer::Update(void)
_oldPerfCounter = pc;
float updInCyclesScaled = GetIsPaused() ? updInCycles : updInCyclesScaled * ms_fTimeScale;
float updInCyclesScaled = GetIsPaused() ? updInCycles : updInCycles * ms_fTimeScale;
// We need that real frame time to fix transparent menu bug.
#ifndef FIX_HIGH_FPS_BUGS_ON_FRONTEND