aboutsummaryrefslogtreecommitdiff
path: root/scumm/script_v72he.cpp
diff options
context:
space:
mode:
authorTravis Howell2005-05-10 05:42:48 +0000
committerTravis Howell2005-05-10 05:42:48 +0000
commitf1c3eb24ef34fbf4949bc2b624d1cf3a421e5e38 (patch)
tree6a60bb595c943995918833f277819045dd152301 /scumm/script_v72he.cpp
parent19b093145042207bb36dcd6055d8a2f47da1b9db (diff)
downloadscummvm-rg350-f1c3eb24ef34fbf4949bc2b624d1cf3a421e5e38.tar.gz
scummvm-rg350-f1c3eb24ef34fbf4949bc2b624d1cf3a421e5e38.tar.bz2
scummvm-rg350-f1c3eb24ef34fbf4949bc2b624d1cf3a421e5e38.zip
Rename opcodes
svn-id: r18025
Diffstat (limited to 'scumm/script_v72he.cpp')
-rw-r--r--scumm/script_v72he.cpp6
1 files changed, 3 insertions, 3 deletions
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() {