diff options
-rw-r--r-- | engines/made/script.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/made/script.cpp b/engines/made/script.cpp index 9919570e87..ded516c8b8 100644 --- a/engines/made/script.cpp +++ b/engines/made/script.cpp @@ -302,7 +302,7 @@ void ScriptInterpreter::runScript(int16 scriptObjectIndex) { debug(4, "opcode = %s\n", _commands[opcode - 1].desc); (this->*_commands[opcode - 1].proc)(); } else { - printf("ScriptInterpreter::runScript(%d) Unknown opcode %02X\n", _runningScriptObjectIndex, opcode); + warning("ScriptInterpreter::runScript(%d) Unknown opcode %02X\n", _runningScriptObjectIndex, opcode); } } |