aboutsummaryrefslogtreecommitdiff
path: root/engines/made/script.cpp
diff options
context:
space:
mode:
authorBenjamin Haisch2008-04-29 21:52:26 +0000
committerBenjamin Haisch2008-04-29 21:52:26 +0000
commite0b964b5273dbdbccdfe40b996e76be91c3c4eff (patch)
tree333b80f3a1da42457da8d51198ecc5b8bc96d4a3 /engines/made/script.cpp
parent5975956f2c5d5561574d5ce8835ad18d300da2bd (diff)
downloadscummvm-rg350-e0b964b5273dbdbccdfe40b996e76be91c3c4eff.tar.gz
scummvm-rg350-e0b964b5273dbdbccdfe40b996e76be91c3c4eff.tar.bz2
scummvm-rg350-e0b964b5273dbdbccdfe40b996e76be91c3c4eff.zip
Turned printf into warning.
svn-id: r31780
Diffstat (limited to 'engines/made/script.cpp')
-rw-r--r--engines/made/script.cpp2
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);
}
}