[Scummvm-cvs-logs] CVS: scummvm/scumm intern.h,2.196,2.197 script_v72he.cpp,2.16,2.17

Travis Howell kirben at users.sourceforge.net
Wed Aug 25 00:19:03 CEST 2004


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

Modified Files:
	intern.h script_v72he.cpp 
Log Message:

Add stub


Index: intern.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/intern.h,v
retrieving revision 2.196
retrieving revision 2.197
diff -u -d -r2.196 -r2.197
--- intern.h	25 Aug 2004 06:34:32 -0000	2.196
+++ intern.h	25 Aug 2004 07:18:18 -0000	2.197
@@ -709,6 +709,7 @@
 	void o72_unknownF4();
 	void o72_unknownFA();
 	void o72_unknownFB();
+	void o72_unknownFC();
 };
 
 class ScummEngine_v7 : public ScummEngine_v6 {

Index: script_v72he.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v72he.cpp,v
retrieving revision 2.16
retrieving revision 2.17
diff -u -d -r2.16 -r2.17
--- script_v72he.cpp	25 Aug 2004 06:34:32 -0000	2.16
+++ script_v72he.cpp	25 Aug 2004 07:18:18 -0000	2.17
@@ -361,7 +361,7 @@
 		OPCODE(o72_unknownFA),
 		OPCODE(o72_unknownFB),
 		/* FC */
-		OPCODE(o6_invalid),
+		OPCODE(o72_unknownFC),
 		OPCODE(o6_invalid),
 		OPCODE(o6_invalid),
 		OPCODE(o6_invalid),
@@ -502,6 +502,7 @@
 		a = _fileHandle.readUint16LE();
 		b = _fileHandle.readUint16LE();
 		c = _fileHandle.readUint16LE();
+
 		if (c == 1)
 			defineArray(num, kBitArray, 0, a, 0, b);
 		else
@@ -1074,4 +1075,11 @@
 	warning("o72_unknownFB stub");
 }
 
+void ScummEngine_v72he::o72_unknownFC() {
+	int a =	pop();
+	int b =	pop();
+	warning("o7_unknownFB stub (%d, %d)", b, a);
+	push(0);
+}
+
 } // End of namespace Scumm





More information about the Scummvm-git-logs mailing list