diff options
| author | Travis Howell | 2004-10-04 01:34:29 +0000 | 
|---|---|---|
| committer | Travis Howell | 2004-10-04 01:34:29 +0000 | 
| commit | f9e21fe4e221723bc331a0ed690b260c9c7e8963 (patch) | |
| tree | b27fc5b3848ececb177fb5211dae1f412284cbd6 | |
| parent | a7570bf99db86433ecda0c7984f2325868c142cc (diff) | |
| download | scummvm-rg350-f9e21fe4e221723bc331a0ed690b260c9c7e8963.tar.gz scummvm-rg350-f9e21fe4e221723bc331a0ed690b260c9c7e8963.tar.bz2 scummvm-rg350-f9e21fe4e221723bc331a0ed690b260c9c7e8963.zip | |
Rename opcode
svn-id: r15402
| -rw-r--r-- | scumm/intern.h | 2 | ||||
| -rw-r--r-- | scumm/script_v80he.cpp | 2 | ||||
| -rw-r--r-- | scumm/script_v90he.cpp | 8 | 
3 files changed, 5 insertions, 7 deletions
| diff --git a/scumm/intern.h b/scumm/intern.h index baaff2bbeb..acbef781ab 100644 --- a/scumm/intern.h +++ b/scumm/intern.h @@ -884,7 +884,7 @@ protected:  	void o90_findAllObjectsWithClassOf();  	void o90_unknown35();  	void o90_unknown36(); -	void o90_unknown37(); +	void o90_dim2dim2Array();  	void o90_unknown3A();  	void o90_unknown44();  	void o90_unknown94(); diff --git a/scumm/script_v80he.cpp b/scumm/script_v80he.cpp index ce16a21538..6b100a14b6 100644 --- a/scumm/script_v80he.cpp +++ b/scumm/script_v80he.cpp @@ -612,8 +612,6 @@ void ScummEngine_v80he::o80_setState() {  }  void ScummEngine_v80he::o80_drawWizPolygon() { -	error("o80_drawWizPolygon"); -  	WizImage wi;  	wi.x1 = wi.y1 = pop();  	wi.resNum = pop(); diff --git a/scumm/script_v90he.cpp b/scumm/script_v90he.cpp index 0d95777c1e..751af90a17 100644 --- a/scumm/script_v90he.cpp +++ b/scumm/script_v90he.cpp @@ -112,7 +112,7 @@ void ScummEngine_v90he::setupOpcodes() {  		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 @@ void ScummEngine_v90he::o90_unknown2F() {  	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 @@ void ScummEngine_v90he::o90_unknown36() {  	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 @@ void ScummEngine_v90he::o90_unknown37() {  		data = kStringArray;  		break;  	default: -		error("o90_unknown37: default case %d", type); +		error("o90_dim2dim2Array: default case %d", type);  	}  	if (pop() == 2) { | 
