diff options
author | Eugene Sandulenko | 2017-08-12 13:32:43 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2017-08-12 15:02:57 +0200 |
commit | 4ca14e224204651eee24250c3197e336529724fc (patch) | |
tree | cd301b45cf7d731247c7cbb7c3dc2afaf92606d3 /engines/wage | |
parent | 1892d60c7ad88a1d9fdf83e56e39854dbda23e3d (diff) | |
download | scummvm-rg350-4ca14e224204651eee24250c3197e336529724fc.tar.gz scummvm-rg350-4ca14e224204651eee24250c3197e336529724fc.tar.bz2 scummvm-rg350-4ca14e224204651eee24250c3197e336529724fc.zip |
WAGE: Turn warning into debug message
Diffstat (limited to 'engines/wage')
-rw-r--r-- | engines/wage/script.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/wage/script.cpp b/engines/wage/script.cpp index d998e7b049..c4cf23fcb1 100644 --- a/engines/wage/script.cpp +++ b/engines/wage/script.cpp @@ -160,7 +160,7 @@ bool Script::execute(World *world, int loopCount, Common::String *inputText, Des if (inputText) { input = preprocessInputText(*_inputText); - warning("Input was: '%s' is '%s'", _inputText->c_str(), input.c_str()); + debug(2, "Input was: '%s' is '%s'", _inputText->c_str(), input.c_str()); _inputText = new Common::String(input); } |