[Scummvm-cvs-logs] SF.net SVN: scummvm: [22144] scummvm/trunk/engines/simon/animation.cpp
kirben at users.sourceforge.net
kirben at users.sourceforge.net
Mon Apr 24 23:05:06 CEST 2006
Revision: 22144
Author: kirben
Date: 2006-04-24 23:04:20 -0700 (Mon, 24 Apr 2006)
ViewCVS: http://svn.sourceforge.net/scummvm/?rev=22144&view=rev
Log Message:
-----------
Hide mouse pointer when video is active
Modified Paths:
--------------
scummvm/trunk/engines/simon/animation.cpp
Modified: scummvm/trunk/engines/simon/animation.cpp
===================================================================
--- scummvm/trunk/engines/simon/animation.cpp 2006-04-24 23:05:39 UTC (rev 22143)
+++ scummvm/trunk/engines/simon/animation.cpp 2006-04-25 06:04:20 UTC (rev 22144)
@@ -82,7 +82,10 @@
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 @@
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);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list