[Scummvm-cvs-logs] CVS: scummvm/scumm intern.h,2.480,2.481 script_v72he.cpp,2.285,2.286 script_v80he.cpp,2.107,2.108 script_v90he.cpp,2.252,2.253

kirben kirben at users.sourceforge.net
Mon May 9 22:44:42 CEST 2005


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

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

Rename opcodes


Index: intern.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/intern.h,v
retrieving revision 2.480
retrieving revision 2.481
diff -u -d -r2.480 -r2.481
--- intern.h	10 May 2005 05:34:45 -0000	2.480
+++ intern.h	10 May 2005 05:42:47 -0000	2.481
@@ -919,7 +919,7 @@
 	void o72_dimArray();
 	void o72_dim2dimArray();
 	void o72_traceStatus();
-	void o72_unknownCF();
+	void o72_debugInput();
 	void o72_drawWizImage();
 	void o72_kernelGetFunctions();
 	void o72_jumpToScript();
@@ -1232,7 +1232,7 @@
 	void o90_getObjectData();
 	void o90_getPaletteData();
 	void o90_paletteOps();
-	void o90_unknownA5();
+	void o90_fontUnk();
 	void o90_getActorAnimProgress();
 	void o90_kernelGetFunctions();
 	void o90_kernelSetFunctions();

Index: script_v72he.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v72he.cpp,v
retrieving revision 2.285
retrieving revision 2.286
diff -u -d -r2.285 -r2.286
--- script_v72he.cpp	8 May 2005 21:49:45 -0000	2.285
+++ script_v72he.cpp	10 May 2005 05:42:47 -0000	2.286
@@ -302,7 +302,7 @@
 		OPCODE(o6_pickOneOfDefault),
 		OPCODE(o6_stampObject),
 		OPCODE(o72_drawWizImage),
-		OPCODE(o72_unknownCF),
+		OPCODE(o72_debugInput),
 		/* D0 */
 		OPCODE(o6_getDateTime),
 		OPCODE(o6_stopTalking),
@@ -1696,7 +1696,7 @@
 	displayWizImage(&wi);
 }
 
-void ScummEngine_v72he::o72_unknownCF() {
+void ScummEngine_v72he::o72_debugInput() {
 	byte string[255];
 
 	copyScriptString(string, sizeof(string));
@@ -1706,7 +1706,7 @@
 	ArrayHeader *ah = defineArray(0, kStringArray, 0, 0, 0, len);
 	memcpy(ah->data, string, len);
 	push(readVar(0));
-	debug(1,"o72_unknownCF: String %s", string);
+	debug(1,"o72_debugInput: String %s", string);
 }
 
 void ScummEngine_v72he::o72_jumpToScript() {

Index: script_v80he.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v80he.cpp,v
retrieving revision 2.107
retrieving revision 2.108
diff -u -d -r2.107 -r2.108
--- script_v80he.cpp	10 May 2005 05:34:49 -0000	2.107
+++ script_v80he.cpp	10 May 2005 05:42:47 -0000	2.108
@@ -302,7 +302,7 @@
 		OPCODE(o6_pickOneOfDefault),
 		OPCODE(o6_stampObject),
 		OPCODE(o72_drawWizImage),
-		OPCODE(o72_unknownCF),
+		OPCODE(o72_debugInput),
 		/* D0 */
 		OPCODE(o6_getDateTime),
 		OPCODE(o6_stopTalking),

Index: script_v90he.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v90he.cpp,v
retrieving revision 2.252
retrieving revision 2.253
diff -u -d -r2.252 -r2.253
--- script_v90he.cpp	10 May 2005 05:34:50 -0000	2.252
+++ script_v90he.cpp	10 May 2005 05:42:48 -0000	2.253
@@ -249,7 +249,7 @@
 		OPCODE(o6_getVerbEntrypoint),
 		/* A4 */
 		OPCODE(o72_arrayOps),
-		OPCODE(o90_unknownA5),
+		OPCODE(o90_fontUnk),
 		OPCODE(o80_drawBox),
 		OPCODE(o6_pop),
 		/* A8 */
@@ -301,7 +301,7 @@
 		OPCODE(o6_pickOneOfDefault),
 		OPCODE(o6_stampObject),
 		OPCODE(o72_drawWizImage),
-		OPCODE(o72_unknownCF),
+		OPCODE(o72_debugInput),
 		/* D0 */
 		OPCODE(o6_getDateTime),
 		OPCODE(o6_stopTalking),
@@ -2482,7 +2482,7 @@
 
 
 
-void ScummEngine_v90he::o90_unknownA5() {
+void ScummEngine_v90he::o90_fontUnk() {
 	// Font related
 	byte string[80];
 	int a;
@@ -2507,10 +2507,10 @@
 		push(1);
 		break;
 	default:
-		error("o90_unknownA5: Unknown case %d", subOp);
+		error("o90_fontUnk: Unknown case %d", subOp);
 	}
 
-	debug(1,"o90_unknownA5 stub (%d)", subOp);
+	debug(1,"o90_fontUnk stub (%d)", subOp);
 }
 
 void ScummEngine_v90he::o90_getActorAnimProgress() {





More information about the Scummvm-git-logs mailing list