[Scummvm-cvs-logs] CVS: scummvm/scumm intern.h,2.34,2.35 script_v6.cpp,1.49,1.50

Jonathan Gray khalek at users.sourceforge.net
Sun Feb 16 06:53:03 CET 2003


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

Modified Files:
	intern.h script_v6.cpp 
Log Message:
change o6_uknownCD name for o6_stampObject

Index: intern.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/intern.h,v
retrieving revision 2.34
retrieving revision 2.35
diff -u -d -r2.34 -r2.35
--- intern.h	15 Feb 2003 09:39:51 -0000	2.34
+++ intern.h	16 Feb 2003 14:52:23 -0000	2.35
@@ -362,7 +362,7 @@
 	void o6_getAnimateVariable();
 	void o6_drawBlastObject();
 	void o6_getActorLayer();
-	void o6_unknownCD();
+	void o6_stampObject();
 	void o6_bor();
 	void o6_band();
 	void o6_stopTalking();

Index: script_v6.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v6.cpp,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -d -r1.49 -r1.50
--- script_v6.cpp	15 Feb 2003 09:39:52 -0000	1.49
+++ script_v6.cpp	16 Feb 2003 14:52:25 -0000	1.50
@@ -299,7 +299,7 @@
 		OPCODE(o6_pickOneOf),
 		/* CC */
 		OPCODE(o6_pickOneOfDefault),
-		OPCODE(o6_unknownCD),
+		OPCODE(o6_stampObject),
 		OPCODE(o6_invalid),
 		OPCODE(o6_invalid),
 		/* D0 */
@@ -2888,16 +2888,17 @@
 	push(i);
 }
 
-void Scumm_v6::o6_unknownCD() {
+void Scumm_v6::o6_stampObject() {
 	// Full Throttle: FIXME
 	//		  Opcode is used when placing the bunny into the
 	//		  mine field. Some kind of drawBlastObject() wrapper
-	int a, b, c, d;
-	a = pop();
-	b = pop();
-	c = pop();
-	d = pop();
-	warning("o6_unknownCD: stub(%d, %d, %d, %d)", a, b, c, d);
+	//	also used at least once in the humongous games
+	int object, x, y, image;
+	object = pop();
+	x = pop();
+	y = pop();
+	image = pop();
+	warning("o6_stampObject: stub(%d at (%d,%d) image %d)", object, x, y, image);
 }
 
 void Scumm_v6::o6_stopTalking() {





More information about the Scummvm-git-logs mailing list