DIRECTOR: Lingo: Hid another trace under lingoparse debug flag

This commit is contained in:
Eugene Sandulenko 2017-02-22 11:36:16 +01:00
parent d27aba0bbe
commit 7db8908bc1
2 changed files with 2 additions and 2 deletions

View File

@ -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);

View File

@ -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);