aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/director/lingo/lingo-codegen.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/director/lingo/lingo-codegen.cpp b/engines/director/lingo/lingo-codegen.cpp
index 446c5fa180..d9a55c8ec6 100644
--- a/engines/director/lingo/lingo-codegen.cpp
+++ b/engines/director/lingo/lingo-codegen.cpp
@@ -251,13 +251,13 @@ Symbol *Lingo::define(Common::String &name, int start, int nargs, Common::String
_currentScript->remove_at(i);
}
- if (debugChannelSet(1, kDebugLingoExec)) {
+ if (debugChannelSet(1, kDebugLingoCompile)) {
uint pc = 0;
while (pc < sym->u.defn->size()) {
Common::String instr = g_lingo->decodeInstruction(sym->u.defn, pc, &pc);
- debugC(1, kDebugLingoExec, "[%5d] %s", pc, instr.c_str());
+ debugC(1, kDebugLingoCompile, "[%5d] %s", pc, instr.c_str());
}
- debugC(1, kDebugLingoExec, "<end define code>");
+ debugC(1, kDebugLingoCompile, "<end define code>");
}
return sym;