From 281e45ce0180b5740f56bf3e12adb38e6b5987fa Mon Sep 17 00:00:00 2001 From: Sergeanur Date: Fri, 23 Oct 2020 08:38:36 +0300 Subject: [PATCH] Timer fix --- src/core/Timer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/Timer.cpp b/src/core/Timer.cpp index eb8d9546..bdef6187 100644 --- a/src/core/Timer.cpp +++ b/src/core/Timer.cpp @@ -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