[Scummvm-cvs-logs] CVS: scummvm/scumm script_v6he.cpp,2.95,2.96

Travis Howell kirben at users.sourceforge.net
Thu Aug 26 08:44:13 CEST 2004


Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27736/scumm

Modified Files:
	script_v6he.cpp 
Log Message:

Original games always used screen height instead of pop() value.


Index: script_v6he.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v6he.cpp,v
retrieving revision 2.95
retrieving revision 2.96
diff -u -d -r2.95 -r2.96
--- script_v6he.cpp	26 Aug 2004 12:06:08 -0000	2.95
+++ script_v6he.cpp	26 Aug 2004 15:39:24 -0000	2.96
@@ -426,7 +426,10 @@
 	case 174:		// SO_ROOM_SCREEN
 		b = pop();
 		a = pop();
-		initScreens(a, b);
+		if (_heversion >= 71)
+			initScreens(a, _screenHeight);
+		else
+			initScreens(a, b);
 		break;
 
 	case 175:		// SO_ROOM_PALETTE





More information about the Scummvm-git-logs mailing list