aboutsummaryrefslogtreecommitdiff
path: root/engines/simon
diff options
context:
space:
mode:
authorTravis Howell2006-04-25 06:04:20 +0000
committerTravis Howell2006-04-25 06:04:20 +0000
commit2aa54814f8855d709b4def28d17968125d6c6a98 (patch)
treee74ac27e9dd83fe2ceec289036a6db0cae2d928f /engines/simon
parent2020164a7a503a2a4f5b80e7013a1e617b71354a (diff)
downloadscummvm-rg350-2aa54814f8855d709b4def28d17968125d6c6a98.tar.gz
scummvm-rg350-2aa54814f8855d709b4def28d17968125d6c6a98.tar.bz2
scummvm-rg350-2aa54814f8855d709b4def28d17968125d6c6a98.zip
Hide mouse pointer when video is active
svn-id: r22144
Diffstat (limited to 'engines/simon')
-rw-r--r--engines/simon/animation.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/simon/animation.cpp b/engines/simon/animation.cpp
index b38fcd71a7..a119335c52 100644
--- a/engines/simon/animation.cpp
+++ b/engines/simon/animation.cpp
@@ -82,6 +82,9 @@ bool MoviePlayer::load(const char *filename) {
warning("Failed to load video file %s", filename2);
return false;
}
+ debug(0, "Playing video %s", filename2);
+
+ _vm->_system->showMouse(false);
tag = _fd.readUint32BE();
assert(tag == MKID_BE('DEXA'));
@@ -303,7 +306,7 @@ void MoviePlayer::decodeFrame() {
if (tag == MKID_BE('FRAM')) {
uint8 type = _fd.readByte();
uint32 size = _fd.readUint32BE();
- debug(0, "frame %d type %d size %d", _frameNum, type, size);
+ debug(5, "frame %d type %d size %d", _frameNum, type, size);
_fd.read(_frameBuffer2, size);