[Scummvm-cvs-logs] CVS: scummvm/scumm gfx.cpp,2.204,2.205

Max Horn fingolfin at users.sourceforge.net
Thu Aug 28 12:21:09 CEST 2003


Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1:/tmp/cvs-serv2401/scumm

Modified Files:
	gfx.cpp 
Log Message:
double cursor animation speed (see bug #757191)

Index: gfx.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/gfx.cpp,v
retrieving revision 2.204
retrieving revision 2.205
diff -u -d -r2.204 -r2.205
--- gfx.cpp	28 Aug 2003 12:21:35 -0000	2.204
+++ gfx.cpp	28 Aug 2003 19:20:30 -0000	2.205
@@ -3491,8 +3491,8 @@
 
 void Scumm::animateCursor() {
 	if (_cursor.animate) {
-		if (!(_cursor.animateIndex & 0x3)) {
-			decompressDefaultCursor((_cursor.animateIndex >> 2) & 3);
+		if (!(_cursor.animateIndex & 0x1)) {
+			decompressDefaultCursor((_cursor.animateIndex >> 1) & 3);
 		}
 		_cursor.animateIndex++;
 	}





More information about the Scummvm-git-logs mailing list