mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 02:29:01 +00:00
Small timer fix
This commit is contained in:
parent
9b5caa190e
commit
3092b9a46e
1 changed files with 4 additions and 3 deletions
|
@ -105,7 +105,7 @@ void CTimer::Update(void)
|
|||
_oldPerfCounter = pc;
|
||||
|
||||
// bugfix from VC
|
||||
float updInCyclesScaled = GetIsPaused() ? updInCycles : updInCycles * ms_fTimeScale;
|
||||
double updInCyclesScaled = GetIsPaused() ? updInCycles : updInCycles * ms_fTimeScale;
|
||||
|
||||
frameTime = updInCyclesScaled / (double)_nCyclesPerMS;
|
||||
|
||||
|
@ -117,8 +117,9 @@ void CTimer::Update(void)
|
|||
RsTimerType timer = RsTimer();
|
||||
|
||||
RsTimerType updInMs = timer - oldPcTimer;
|
||||
|
||||
frameTime = (double)updInMs * ms_fTimeScale;
|
||||
|
||||
// bugfix from VC
|
||||
frameTime = GetIsPaused() ? (double)updInMs : (double)updInMs * ms_fTimeScale;
|
||||
|
||||
oldPcTimer = timer;
|
||||
|
||||
|
|
Loading…
Reference in a new issue