[Scummvm-cvs-logs] CVS: scummvm/scumm script_v6.cpp,1.232,1.233

Travis Howell kirben at users.sourceforge.net
Mon Dec 29 23:35:01 CET 2003


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

Modified Files:
	script_v6.cpp 
Log Message:

Add missing case for HE games.


Index: script_v6.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v6.cpp,v
retrieving revision 1.232
retrieving revision 1.233
diff -u -d -r1.232 -r1.233
--- script_v6.cpp	30 Dec 2003 06:43:15 -0000	1.232
+++ script_v6.cpp	30 Dec 2003 07:34:15 -0000	1.233
@@ -1875,10 +1875,8 @@
 		vs->curmode = 0;
 		break;
 	case 131:		// SO_VERB_DELETE
-		if (_features & GF_HUMONGOUS) {
-			// delete verb supposedly...
-			pop();
-		}
+		if (_features & GF_HUMONGOUS)
+			slot = getVerbSlot(pop(), 0);
 		killVerb(slot);
 		break;
 	case 132:		// SO_VERB_NEW
@@ -2946,7 +2944,7 @@
 void ScummEngine_v6::o6_stampObject() {
 	int object, x, y, state;
 	
-	// dummy opcode in the tentacle
+	// dummy opcode in tentacle
 	if (_gameId == GID_TENTACLE)
 		return;
 





More information about the Scummvm-git-logs mailing list