diff options
author | Travis Howell | 2005-05-10 05:42:48 +0000 |
---|---|---|
committer | Travis Howell | 2005-05-10 05:42:48 +0000 |
commit | f1c3eb24ef34fbf4949bc2b624d1cf3a421e5e38 (patch) | |
tree | 6a60bb595c943995918833f277819045dd152301 /scumm | |
parent | 19b093145042207bb36dcd6055d8a2f47da1b9db (diff) | |
download | scummvm-rg350-f1c3eb24ef34fbf4949bc2b624d1cf3a421e5e38.tar.gz scummvm-rg350-f1c3eb24ef34fbf4949bc2b624d1cf3a421e5e38.tar.bz2 scummvm-rg350-f1c3eb24ef34fbf4949bc2b624d1cf3a421e5e38.zip |
Rename opcodes
svn-id: r18025
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/intern.h | 4 | ||||
-rw-r--r-- | scumm/script_v72he.cpp | 6 | ||||
-rw-r--r-- | scumm/script_v80he.cpp | 2 | ||||
-rw-r--r-- | scumm/script_v90he.cpp | 10 |
4 files changed, 11 insertions, 11 deletions
diff --git a/scumm/intern.h b/scumm/intern.h index 9d95e08c23..48a0b26043 100644 --- a/scumm/intern.h +++ b/scumm/intern.h @@ -919,7 +919,7 @@ protected: 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 @@ protected: void o90_getObjectData(); void o90_getPaletteData(); void o90_paletteOps(); - void o90_unknownA5(); + void o90_fontUnk(); void o90_getActorAnimProgress(); void o90_kernelGetFunctions(); void o90_kernelSetFunctions(); diff --git a/scumm/script_v72he.cpp b/scumm/script_v72he.cpp index 9b3ce60bdc..62e2284c16 100644 --- a/scumm/script_v72he.cpp +++ b/scumm/script_v72he.cpp @@ -302,7 +302,7 @@ void ScummEngine_v72he::setupOpcodes() { 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 @@ void ScummEngine_v72he::o72_drawWizImage() { displayWizImage(&wi); } -void ScummEngine_v72he::o72_unknownCF() { +void ScummEngine_v72he::o72_debugInput() { byte string[255]; copyScriptString(string, sizeof(string)); @@ -1706,7 +1706,7 @@ void ScummEngine_v72he::o72_unknownCF() { 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() { diff --git a/scumm/script_v80he.cpp b/scumm/script_v80he.cpp index 00346aafff..09df503cca 100644 --- a/scumm/script_v80he.cpp +++ b/scumm/script_v80he.cpp @@ -302,7 +302,7 @@ void ScummEngine_v80he::setupOpcodes() { OPCODE(o6_pickOneOfDefault), OPCODE(o6_stampObject), OPCODE(o72_drawWizImage), - OPCODE(o72_unknownCF), + OPCODE(o72_debugInput), /* D0 */ OPCODE(o6_getDateTime), OPCODE(o6_stopTalking), diff --git a/scumm/script_v90he.cpp b/scumm/script_v90he.cpp index c120ddd6ad..5e2090e4ab 100644 --- a/scumm/script_v90he.cpp +++ b/scumm/script_v90he.cpp @@ -249,7 +249,7 @@ void ScummEngine_v90he::setupOpcodes() { OPCODE(o6_getVerbEntrypoint), /* A4 */ OPCODE(o72_arrayOps), - OPCODE(o90_unknownA5), + OPCODE(o90_fontUnk), OPCODE(o80_drawBox), OPCODE(o6_pop), /* A8 */ @@ -301,7 +301,7 @@ void ScummEngine_v90he::setupOpcodes() { 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_paletteOps() { -void ScummEngine_v90he::o90_unknownA5() { +void ScummEngine_v90he::o90_fontUnk() { // Font related byte string[80]; int a; @@ -2507,10 +2507,10 @@ void ScummEngine_v90he::o90_unknownA5() { 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() { |