diff options
-rw-r--r-- | engines/zvision/video.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/zvision/video.cpp b/engines/zvision/video.cpp index 4066c5dcd5..377b24af2a 100644 --- a/engines/zvision/video.cpp +++ b/engines/zvision/video.cpp @@ -153,11 +153,12 @@ void ZVision::playVideo(Video::VideoDecoder &videoDecoder, const Common::Rect &d } else { _system->copyRectToScreen((const byte *)frame->getBasePtr(0, 0), pitch, x, y, finalWidth, finalHeight); } - - _system->updateScreen(); } } + // Always update the screen so the mouse continues to render + _system->updateScreen(); + _system->delayMillis(videoDecoder.getTimeToNextFrame()); } |