diff options
author | Eugene Sandulenko | 2017-02-22 11:36:16 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2017-02-22 11:36:16 +0100 |
commit | 7db8908bc129fefa4b7d80792ec70d082b535824 (patch) | |
tree | ea219f973e2e5fd52ef124ccfcf0890a058acebe /engines | |
parent | d27aba0bbe77698be5fe6e0211deffb733ca8494 (diff) | |
download | scummvm-rg350-7db8908bc129fefa4b7d80792ec70d082b535824.tar.gz scummvm-rg350-7db8908bc129fefa4b7d80792ec70d082b535824.tar.bz2 scummvm-rg350-7db8908bc129fefa4b7d80792ec70d082b535824.zip |
DIRECTOR: Lingo: Hid another trace under lingoparse debug flag
Diffstat (limited to 'engines')
-rw-r--r-- | engines/director/lingo/lingo-lex.cpp | 2 | ||||
-rw-r--r-- | engines/director/lingo/lingo-lex.l | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/director/lingo/lingo-lex.cpp b/engines/director/lingo/lingo-lex.cpp index 48a5166b95..c931dc8a56 100644 --- a/engines/director/lingo/lingo-lex.cpp +++ b/engines/director/lingo/lingo-lex.cpp @@ -746,7 +746,7 @@ using namespace Director; int yyparse(); static void count() { - if (debugChannelSet(-1, kDebugLingoCompile)) + if (debugChannelSet(-1, kDebugLingoParse)) debug("LEXER: Read '%s' at %d:%d", yytext, g_lingo->_linenumber, g_lingo->_colnumber); g_lingo->_colnumber += strlen(yytext); diff --git a/engines/director/lingo/lingo-lex.l b/engines/director/lingo/lingo-lex.l index 37bad1247d..6a38bac047 100644 --- a/engines/director/lingo/lingo-lex.l +++ b/engines/director/lingo/lingo-lex.l @@ -37,7 +37,7 @@ using namespace Director; int yyparse(); static void count() { - if (debugChannelSet(-1, kDebugLingoCompile)) + if (debugChannelSet(-1, kDebugLingoParse)) debug("LEXER: Read '%s' at %d:%d", yytext, g_lingo->_linenumber, g_lingo->_colnumber); g_lingo->_colnumber += strlen(yytext); |