aboutsummaryrefslogtreecommitdiff
path: root/engines/director/lingo
diff options
context:
space:
mode:
authorScott Percival2018-07-29 11:53:35 +0800
committerEugene Sandulenko2019-11-17 22:31:54 +0100
commita9d863aa195b9c7d8ed2474ad2abb99c20993750 (patch)
tree0149cf8cca87e66c43d687210eb1c7e5f1f2a8dc /engines/director/lingo
parent19a9b380839a56906dfaaea2e13795bf0d0aa8e4 (diff)
downloadscummvm-rg350-a9d863aa195b9c7d8ed2474ad2abb99c20993750.tar.gz
scummvm-rg350-a9d863aa195b9c7d8ed2474ad2abb99c20993750.tar.bz2
scummvm-rg350-a9d863aa195b9c7d8ed2474ad2abb99c20993750.zip
DIRECTOR: Add more debug stubs
Diffstat (limited to 'engines/director/lingo')
-rw-r--r--engines/director/lingo/lingo-events.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/director/lingo/lingo-events.cpp b/engines/director/lingo/lingo-events.cpp
index d5a626aad2..f3bf59b307 100644
--- a/engines/director/lingo/lingo-events.cpp
+++ b/engines/director/lingo/lingo-events.cpp
@@ -190,9 +190,9 @@ void Lingo::runMovieScript(LEvent event) {
*/
for (uint i = 0; i < _scripts[kMovieScript].size(); i++) {
- // processEvent(event,
- // kMovieScript,
- // ?);
+ processEvent(event,
+ kMovieScript,
+ i);
// TODO: How do know which script handles the message?
}
debugC(3, kDebugLingoExec, "STUB: processEvent(event, kMovieScript, ?)");
@@ -306,7 +306,7 @@ void Lingo::processEvent(LEvent event, ScriptType st, int entityId) {
executeScript(st, entityId); // D3 list of scripts.
} else {
- //debugC(3, kDebugLingoExec, "STUB: processEvent(%s) for %d", _eventHandlerTypes[event], entityId);
+ debugC(3, kDebugLingoExec, "STUB: processEvent(%s) for %d", _eventHandlerTypes[event], entityId);
}
}