[Scummvm-cvs-logs] CVS: scummvm/scumm script_v5.cpp,1.26,1.27

Pawel Kolodziejski aquadran at users.sourceforge.net
Fri Apr 11 13:22:08 CEST 2003


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

Modified Files:
	script_v5.cpp 
Log Message:
fix for cursor image in the loom ega

Index: script_v5.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v5.cpp,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -d -r1.26 -r1.27
--- script_v5.cpp	11 Apr 2003 05:31:18 -0000	1.26
+++ script_v5.cpp	11 Apr 2003 20:21:32 -0000	1.27
@@ -623,8 +623,11 @@
 	case 10:											/* set cursor img */
 		i = getVarOrDirectByte(0x80);
 		j = getVarOrDirectByte(0x40);
-		if (_gameId != GID_LOOM256)
+		// cursor image in both Looms is based on image from charset
+		// omit for now
+		if ((_gameId != GID_LOOM256) && (_gameId != GID_LOOM)) {
 			setCursorImg(i, j, 1);
+		}
 		break;
 	case 11:											/* set cursor hotspot */
 		i = getVarOrDirectByte(0x80);





More information about the Scummvm-git-logs mailing list