diff options
Diffstat (limited to 'scumm/script_v72he.cpp')
| -rw-r--r-- | scumm/script_v72he.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scumm/script_v72he.cpp b/scumm/script_v72he.cpp index f78c97df7f..0e715d3963 100644 --- a/scumm/script_v72he.cpp +++ b/scumm/script_v72he.cpp @@ -357,7 +357,7 @@ void ScummEngine_v72he::setupOpcodes() { /* F8 */ OPCODE(o72_getResourceSize), OPCODE(o72_setFilePath), - OPCODE(o72_unknownFA), + OPCODE(o72_setWindowCaption), OPCODE(o70_polygonOps), /* FC */ OPCODE(o70_polygonHit), @@ -2514,12 +2514,12 @@ void ScummEngine_v72he::o72_setFilePath() { debug(1,"o72_setFilePath: %s", filename); } -void ScummEngine_v72he::o72_unknownFA() { +void ScummEngine_v72he::o72_setWindowCaption() { byte name[100]; copyScriptString(name); int id = fetchScriptByte(); - debug(1,"o72_unknownFA: (%d) %s", id, name); + debug(1,"o72_setWindowCaption: (%d) %s", id, name); } void ScummEngine_v72he::decodeParseString(int m, int n) { |
