diff options
author | Eugene Sandulenko | 2019-12-18 11:03:01 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2019-12-18 22:47:31 +0100 |
commit | 034f629f0edaeec527f7d03c01dce6bc6d81e2bc (patch) | |
tree | 2a99b233036d08a06407d746a3c7fd16babb4b2b | |
parent | ba4a0d6f2b1102d78dd2bec84687e1582ea3c801 (diff) | |
download | scummvm-rg350-034f629f0edaeec527f7d03c01dce6bc6d81e2bc.tar.gz scummvm-rg350-034f629f0edaeec527f7d03c01dce6bc6d81e2bc.tar.bz2 scummvm-rg350-034f629f0edaeec527f7d03c01dce6bc6d81e2bc.zip |
DIRECTOR: LINGO: Hid more noise warnings
-rw-r--r-- | engines/director/lingo/lingo-events.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/director/lingo/lingo-events.cpp b/engines/director/lingo/lingo-events.cpp index c798ae80be..32b8b8d1e6 100644 --- a/engines/director/lingo/lingo-events.cpp +++ b/engines/director/lingo/lingo-events.cpp @@ -195,7 +195,7 @@ void Lingo::runMovieScript(LEvent event) { i); // TODO: How do know which script handles the message? } - debugC(3, kDebugEvents, "STUB: processEvent(event, kMovieScript, ?)"); + debugC(9, kDebugEvents, "STUB: processEvent(event, kMovieScript, ?)"); } void Lingo::processFrameEvent(LEvent event) { @@ -306,7 +306,7 @@ void Lingo::processEvent(LEvent event, ScriptType st, int entityId) { executeScript(st, entityId, 0); // D3 list of scripts. } else { - debugC(3, kDebugEvents, "STUB: processEvent(%s, %s, %d)", _eventHandlerTypes[event], scriptType2str(st), entityId); + debugC(9, kDebugEvents, "STUB: processEvent(%s, %s, %d)", _eventHandlerTypes[event], scriptType2str(st), entityId); } } |