[Scummvm-cvs-logs] CVS: scummvm/scumm script_v7he.cpp,2.90,2.91

Travis Howell kirben at users.sourceforge.net
Wed Sep 15 21:54:00 CEST 2004


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

Modified Files:
	script_v7he.cpp 
Log Message:

ADD HE80+ difference


Index: script_v7he.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v7he.cpp,v
retrieving revision 2.90
retrieving revision 2.91
diff -u -d -r2.90 -r2.91
--- script_v7he.cpp	15 Sep 2004 12:40:49 -0000	2.90
+++ script_v7he.cpp	16 Sep 2004 04:53:04 -0000	2.91
@@ -759,11 +759,19 @@
 		_fullRedraw = 1;
 		break;
 	case 24:
-		_skipProcessActors = 1;
+		if (_heversion <= 72) {
+			_skipProcessActors = 1;
+		} else {
+			//Pause aux animation
+		}
 		_fullRedraw = 1;
 		break;
 	case 25:
-		_skipProcessActors = 0;
+		if (_heversion <= 72) {
+			_skipProcessActors = 0;
+		} else {
+			//Resume aux animation
+		}
 		_fullRedraw = 1;
 		break;
 	case 30:





More information about the Scummvm-git-logs mailing list