diff options
author | Alyssa Milburn | 2011-08-23 23:13:34 +0200 |
---|---|---|
committer | Alyssa Milburn | 2011-08-23 23:13:34 +0200 |
commit | 4a7532fb227d0325a1ae30c72155c642e2c55a4b (patch) | |
tree | deba3f52e18d51df82ff1febc23b644827afd900 /engines/composer | |
parent | fca52e05148f350ee31f9921f260404fad03152d (diff) | |
download | scummvm-rg350-4a7532fb227d0325a1ae30c72155c642e2c55a4b.tar.gz scummvm-rg350-4a7532fb227d0325a1ae30c72155c642e2c55a4b.tar.bz2 scummvm-rg350-4a7532fb227d0325a1ae30c72155c642e2c55a4b.zip |
COMPOSER: Change a common warning to use debug().
Diffstat (limited to 'engines/composer')
-rw-r--r-- | engines/composer/scripting.cpp | 2 |
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; } |