aboutsummaryrefslogtreecommitdiff
path: root/engines/director/lingo/lingo.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2016-06-17 15:16:21 +0200
committerEugene Sandulenko2016-08-03 23:40:36 +0200
commit0fa5505d659bcd0a3548f6c5d8fcfb84054b3cb8 (patch)
tree82c45421c4104d0f3e2ffd26286968a40d159933 /engines/director/lingo/lingo.cpp
parentdfdb194957e8b1634d1aa08bf2bc0659c038c9ac (diff)
downloadscummvm-rg350-0fa5505d659bcd0a3548f6c5d8fcfb84054b3cb8.tar.gz
scummvm-rg350-0fa5505d659bcd0a3548f6c5d8fcfb84054b3cb8.tar.bz2
scummvm-rg350-0fa5505d659bcd0a3548f6c5d8fcfb84054b3cb8.zip
DIRECTOR: Hide noisy debug messages
Diffstat (limited to 'engines/director/lingo/lingo.cpp')
-rw-r--r--engines/director/lingo/lingo.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/director/lingo/lingo.cpp b/engines/director/lingo/lingo.cpp
index ddb1cb11f3..8341d5a958 100644
--- a/engines/director/lingo/lingo.cpp
+++ b/engines/director/lingo/lingo.cpp
@@ -81,7 +81,7 @@ Lingo::~Lingo() {
}
void Lingo::addCode(Common::String code, ScriptType type, uint16 id) {
- debug(0, "Add code \"%s\" for type %d with id %d", code.c_str(), type, id);
+ debug(2, "Add code \"%s\" for type %d with id %d", code.c_str(), type, id);
if (_scripts[type].contains(id)) {
delete _scripts[type][id];
@@ -97,7 +97,7 @@ void Lingo::processEvent(LEvent event, int entityId) {
if (!_eventHandlerTypes.contains(event))
error("processEvent: Unknown event %d for entity %d", event, entityId);
- debug(0, "processEvent(%s) for %d", _eventHandlerTypes[event], entityId);
+ debug(2, "processEvent(%s) for %d", _eventHandlerTypes[event], entityId);
}
} // End of namespace Director