aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlyssa Milburn2011-08-23 23:13:34 +0200
committerAlyssa Milburn2011-08-23 23:13:34 +0200
commit4a7532fb227d0325a1ae30c72155c642e2c55a4b (patch)
treedeba3f52e18d51df82ff1febc23b644827afd900
parentfca52e05148f350ee31f9921f260404fad03152d (diff)
downloadscummvm-rg350-4a7532fb227d0325a1ae30c72155c642e2c55a4b.tar.gz
scummvm-rg350-4a7532fb227d0325a1ae30c72155c642e2c55a4b.tar.bz2
scummvm-rg350-4a7532fb227d0325a1ae30c72155c642e2c55a4b.zip
COMPOSER: Change a common warning to use debug().
-rw-r--r--engines/composer/scripting.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/composer/scripting.cpp b/engines/composer/scripting.cpp
index 83b6336889..1989919233 100644
--- a/engines/composer/scripting.cpp
+++ b/engines/composer/scripting.cpp
@@ -160,7 +160,7 @@ void ComposerEngine::setArg(uint16 arg, uint16 type, uint16 val) {
void ComposerEngine::runScript(uint16 id) {
if (!hasResource(ID_SCRP, id)) {
- warning("ignoring attempt to run script %d, because it doesn't exist", id);
+ debug(1, "ignoring attempt to run script %d, because it doesn't exist", id);
return;
}