diff options
author | Eugene Sandulenko | 2019-12-09 22:00:29 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2019-12-10 00:32:54 +0100 |
commit | feb2185742a7eb404d55252ea3952139655d5ba8 (patch) | |
tree | 6c0184eec0843f7c3f31820e702f78da14c2a9f2 /engines/director/lingo | |
parent | 6b6dc218133f406c89ca6446dcaa5ba68f464c2a (diff) | |
download | scummvm-rg350-feb2185742a7eb404d55252ea3952139655d5ba8.tar.gz scummvm-rg350-feb2185742a7eb404d55252ea3952139655d5ba8.tar.bz2 scummvm-rg350-feb2185742a7eb404d55252ea3952139655d5ba8.zip |
DIRECTOR: LINGO: Moved event-related debug messages to proper channel
Diffstat (limited to 'engines/director/lingo')
-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 44629a7e9f..c798ae80be 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, kDebugLingoExec, "STUB: processEvent(event, kMovieScript, ?)"); + debugC(3, 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, kDebugLingoExec, "STUB: processEvent(%s, %s, %d)", _eventHandlerTypes[event], scriptType2str(st), entityId); + debugC(3, kDebugEvents, "STUB: processEvent(%s, %s, %d)", _eventHandlerTypes[event], scriptType2str(st), entityId); } } |