[Scummvm-cvs-logs] CVS: scummvm/scumm intern.h,2.303,2.304 script_v100he.cpp,2.16,2.17 script_v72he.cpp,2.171,2.172 script_v7he.cpp,2.106,2.107 script_v80he.cpp,2.57,2.58 script_v90he.cpp,2.94,2.95

Travis Howell kirben at users.sourceforge.net
Wed Oct 13 02:43:04 CEST 2004


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

Modified Files:
	intern.h script_v100he.cpp script_v72he.cpp script_v7he.cpp 
	script_v80he.cpp script_v90he.cpp 
Log Message:

Rename opcode


Index: intern.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/intern.h,v
retrieving revision 2.303
retrieving revision 2.304
diff -u -d -r2.303 -r2.304
--- intern.h	10 Oct 2004 06:32:01 -0000	2.303
+++ intern.h	13 Oct 2004 09:39:59 -0000	2.304
@@ -646,7 +646,7 @@
 	void o70_unknownF5();
 	void o70_unknownF6();
 	void o70_setFilePath();
-	void o70_unknownFA();
+	void o70_setWindowCaption();
 	void o70_polygonOps();
 	void o70_polygonHit();
 };
@@ -777,7 +777,7 @@
 	void o72_unknownF6();
 	void o72_getResourceSize();
 	void o72_setFilePath();
-	void o72_unknownFA();
+	void o72_setWindowCaption();
 };
 
 class ScummEngine_v80he : public ScummEngine_v72he {

Index: script_v100he.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v100he.cpp,v
retrieving revision 2.16
retrieving revision 2.17
diff -u -d -r2.16 -r2.17
--- script_v100he.cpp	13 Oct 2004 09:18:17 -0000	2.16
+++ script_v100he.cpp	13 Oct 2004 09:39:59 -0000	2.17
@@ -186,7 +186,7 @@
 		/* 70 */
 		OPCODE(o6_invalid),
 		OPCODE(o6_setBoxSet),
-		OPCODE(o72_unknownFA),
+		OPCODE(o72_setWindowCaption),
 		OPCODE(o6_shuffle),
 		/* 74 */
 		OPCODE(o6_delay),

Index: script_v72he.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v72he.cpp,v
retrieving revision 2.171
retrieving revision 2.172
diff -u -d -r2.171 -r2.172
--- script_v72he.cpp	12 Oct 2004 14:40:32 -0000	2.171
+++ script_v72he.cpp	13 Oct 2004 09:39:59 -0000	2.172
@@ -357,7 +357,7 @@
 		/* F8 */
 		OPCODE(o72_getResourceSize),
 		OPCODE(o72_setFilePath),
-		OPCODE(o72_unknownFA),
+		OPCODE(o72_setWindowCaption),
 		OPCODE(o70_polygonOps),
 		/* FC */
 		OPCODE(o70_polygonHit),
@@ -2514,12 +2514,12 @@
 	debug(1,"o72_setFilePath: %s", filename);
 }
 
-void ScummEngine_v72he::o72_unknownFA() {
+void ScummEngine_v72he::o72_setWindowCaption() {
 	byte name[100];
 	copyScriptString(name);
 	int id = fetchScriptByte();
 
-	debug(1,"o72_unknownFA: (%d) %s", id, name);
+	debug(1,"o72_setWindowCaption: (%d) %s", id, name);
 }
 
 void ScummEngine_v72he::decodeParseString(int m, int n) {

Index: script_v7he.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v7he.cpp,v
retrieving revision 2.106
retrieving revision 2.107
diff -u -d -r2.106 -r2.107
--- script_v7he.cpp	13 Oct 2004 07:52:42 -0000	2.106
+++ script_v7he.cpp	13 Oct 2004 09:39:59 -0000	2.107
@@ -358,7 +358,7 @@
 		/* F8 */
 		OPCODE(o6_invalid),
 		OPCODE(o70_setFilePath),
-		OPCODE(o70_unknownFA),
+		OPCODE(o70_setWindowCaption),
 		OPCODE(o70_polygonOps),
 		/* FC */
 		OPCODE(o70_polygonHit),
@@ -899,10 +899,10 @@
 	debug(1,"stub o70_setFilePath(%s)", filename);
 }
 
-void ScummEngine_v70he::o70_unknownFA() {
+void ScummEngine_v70he::o70_setWindowCaption() {
 	int num = fetchScriptByte();
 	int len = resStrLen(_scriptPointer);
-	debug(1,"stub o70_unknownFA(%d, \"%s\")", num, _scriptPointer);
+	debug(1,"stub o70_setWindowCaption(%d, \"%s\")", num, _scriptPointer);
 	_scriptPointer += len + 1;
 }
 

Index: script_v80he.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v80he.cpp,v
retrieving revision 2.57
retrieving revision 2.58
diff -u -d -r2.57 -r2.58
--- script_v80he.cpp	12 Oct 2004 14:12:20 -0000	2.57
+++ script_v80he.cpp	13 Oct 2004 09:39:59 -0000	2.58
@@ -356,7 +356,7 @@
 		/* F8 */
 		OPCODE(o72_getResourceSize),
 		OPCODE(o72_setFilePath),
-		OPCODE(o72_unknownFA),
+		OPCODE(o72_setWindowCaption),
 		OPCODE(o70_polygonOps),
 		/* FC */
 		OPCODE(o70_polygonHit),

Index: script_v90he.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v90he.cpp,v
retrieving revision 2.94
retrieving revision 2.95
diff -u -d -r2.94 -r2.95
--- script_v90he.cpp	10 Oct 2004 11:09:23 -0000	2.94
+++ script_v90he.cpp	13 Oct 2004 09:39:59 -0000	2.95
@@ -356,7 +356,7 @@
 		/* F8 */
 		OPCODE(o72_getResourceSize),
 		OPCODE(o72_setFilePath),
-		OPCODE(o72_unknownFA),
+		OPCODE(o72_setWindowCaption),
 		OPCODE(o70_polygonOps),
 		/* FC */
 		OPCODE(o70_polygonHit),





More information about the Scummvm-git-logs mailing list