mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-09 19:32:11 +00:00
GRIM: Remove not needed condition for speed limit
This commit is contained in:
parent
fd5cef2692
commit
72cbf1e323
@ -1131,8 +1131,6 @@ void GrimEngine::mainLoop() {
|
||||
if (startTime > endTime)
|
||||
continue;
|
||||
uint32 diffTime = endTime - startTime;
|
||||
if (_speedLimitMs == 0)
|
||||
continue;
|
||||
if (diffTime < _speedLimitMs) {
|
||||
uint32 delayTime = _speedLimitMs - diffTime;
|
||||
g_system->delayMillis(delayTime);
|
||||
|
Loading…
Reference in New Issue
Block a user