diff options
-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) { |