diff options
author | richiesams | 2013-08-19 23:54:17 -0500 |
---|---|---|
committer | richiesams | 2013-08-20 11:41:45 -0500 |
commit | 6c7303995f6fb4eb488ef8a7bba6fc60bc765d04 (patch) | |
tree | 71fc93251d4e2b550a915e37f2a824552c62b489 /engines | |
parent | 9294c5eac969967a294abd97982e5baed6507355 (diff) | |
download | scummvm-rg350-6c7303995f6fb4eb488ef8a7bba6fc60bc765d04.tar.gz scummvm-rg350-6c7303995f6fb4eb488ef8a7bba6fc60bc765d04.tar.bz2 scummvm-rg350-6c7303995f6fb4eb488ef8a7bba6fc60bc765d04.zip |
ZVISION: Always update the screen to ensure the mouse continues to render
Diffstat (limited to 'engines')
-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()); } |