[Scummvm-cvs-logs] CVS: scummvm/scumm script_v72he.cpp,2.76,2.77

Travis Howell kirben at users.sourceforge.net
Sat Sep 11 17:53:17 CEST 2004


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

Modified Files:
	script_v72he.cpp 
Log Message:

Add case


Index: script_v72he.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v72he.cpp,v
retrieving revision 2.76
retrieving revision 2.77
diff -u -d -r2.76 -r2.77
--- script_v72he.cpp	12 Sep 2004 00:48:16 -0000	2.76
+++ script_v72he.cpp	12 Sep 2004 00:52:14 -0000	2.77
@@ -844,23 +844,20 @@
 		return;
 
 	switch (b) {
-	case 21:
-		// HE 80+
+	case 21: // HE 80+
 		k = getStackList(args, ARRAYSIZE(args));
 		for (i = 0; i < k; ++i) {
 			a->setUserCondition(args[i] & 0x7F, args[i] & 0x80);
 		}
 		debug(1,"o72_actorOps: case 21 (%d)", k);
 		break;
-	case 24:
-		// HE 80+
+	case 24: // HE 80+
 		k = pop();
 		a->talkUnk = 1;
 		a->setTalkCondition(k);
 		debug(1,"o72_actorOps: case 24 (%d)", k);
 		break;
-	case 43:
-		// HE 90+
+	case 43: // HE 90+
 		k = pop();
 		debug(1,"o72_actorOps: case 43 (%d)", k);
 		break;
@@ -870,8 +867,12 @@
 		_actorClipOverride.top = pop();
 		_actorClipOverride.left = pop();
 		break;
-	case 68:
-		// HE 90+
+	case 65: // HE 90+
+		i = pop();
+		j = pop();
+		debug(1,"o72_actorOps: case 65 (%d, %d)", i, j);
+		break;
+	case 68: // HE 90+
 		k = pop();
 		debug(1,"o72_actorOps: case 65 (%d)", k);
 		break;





More information about the Scummvm-git-logs mailing list