mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-23 17:49:16 +01:00
Timer fix
This commit is contained in:
parent
e5aa150557
commit
4660491243
@ -188,6 +188,10 @@ void CTimer::Update(void)
|
|||||||
#endif
|
#endif
|
||||||
ms_fTimeStep = frameTime / 1000.0f * 50.0f;
|
ms_fTimeStep = frameTime / 1000.0f * 50.0f;
|
||||||
}
|
}
|
||||||
|
#ifdef FIX_BUGS
|
||||||
|
frameTimeFraction -= uint32(frameTimeFraction);
|
||||||
|
frameTimeFractionScaled -= uint32(frameTimeFractionScaled);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( ms_fTimeStep < 0.01f && !GetIsPaused() && !CSpecialFX::bSnapShotActive)
|
if ( ms_fTimeStep < 0.01f && !GetIsPaused() && !CSpecialFX::bSnapShotActive)
|
||||||
|
Loading…
Reference in New Issue
Block a user