[Scummvm-cvs-logs] CVS: scummvm/scumm intern.h,2.289,2.290 script_v80he.cpp,2.47,2.48 script_v90he.cpp,2.77,2.78

Travis Howell kirben at users.sourceforge.net
Sun Oct 3 18:41:48 CEST 2004


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

Modified Files:
	intern.h 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.289
retrieving revision 2.290
diff -u -d -r2.289 -r2.290
--- intern.h	4 Oct 2004 00:01:06 -0000	2.289
+++ intern.h	4 Oct 2004 01:34:29 -0000	2.290
@@ -884,7 +884,7 @@
 	void o90_findAllObjectsWithClassOf();
 	void o90_unknown35();
 	void o90_unknown36();
-	void o90_unknown37();
+	void o90_dim2dim2Array();
 	void o90_unknown3A();
 	void o90_unknown44();
 	void o90_unknown94();

Index: script_v80he.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v80he.cpp,v
retrieving revision 2.47
retrieving revision 2.48
diff -u -d -r2.47 -r2.48
--- script_v80he.cpp	4 Oct 2004 00:01:06 -0000	2.47
+++ script_v80he.cpp	4 Oct 2004 01:34:29 -0000	2.48
@@ -612,8 +612,6 @@
 }
 
 void ScummEngine_v80he::o80_drawWizPolygon() {
-	error("o80_drawWizPolygon");
-
 	WizImage wi;
 	wi.x1 = wi.y1 = pop();
 	wi.resNum = pop();

Index: script_v90he.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v90he.cpp,v
retrieving revision 2.77
retrieving revision 2.78
diff -u -d -r2.77 -r2.78
--- script_v90he.cpp	4 Oct 2004 01:19:05 -0000	2.77
+++ script_v90he.cpp	4 Oct 2004 01:34:29 -0000	2.78
@@ -112,7 +112,7 @@
 		OPCODE(o90_findAllObjectsWithClassOf),
 		OPCODE(o90_unknown35),
 		OPCODE(o90_unknown36),
-		OPCODE(o90_unknown37),
+		OPCODE(o90_dim2dim2Array),
 		/* 38 */
 		OPCODE(o6_invalid),
 		OPCODE(o6_invalid),
@@ -995,7 +995,7 @@
 	case 201:
 		break;
 	default:
-		error("o90_unknown28: Unknown case %d", subOp);
+		error("o90_unknown2F: Unknown case %d", subOp);
 	}
 	debug(1,"o90_unknown2F stub (%d)", subOp);
 }
@@ -1087,7 +1087,7 @@
 	push(b);
 }
 
-void ScummEngine_v90he::o90_unknown37() {
+void ScummEngine_v90he::o90_dim2dim2Array() {
 	int data, dim1start, dim1end, dim2start, dim2end;
 	int type = fetchScriptByte();
 
@@ -1111,7 +1111,7 @@
 		data = kStringArray;
 		break;
 	default:
-		error("o90_unknown37: default case %d", type);
+		error("o90_dim2dim2Array: default case %d", type);
 	}
 
 	if (pop() == 2) {





More information about the Scummvm-git-logs mailing list