aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorrichiesams2013-08-19 23:54:17 -0500
committerrichiesams2013-08-20 11:41:45 -0500
commit6c7303995f6fb4eb488ef8a7bba6fc60bc765d04 (patch)
tree71fc93251d4e2b550a915e37f2a824552c62b489 /engines
parent9294c5eac969967a294abd97982e5baed6507355 (diff)
downloadscummvm-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.cpp5
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());
}