Fixed script developer printf

This commit is contained in:
smallmodel 2023-08-16 02:43:22 +02:00
parent 244220f031
commit efed6d0eac
No known key found for this signature in database
GPG key ID: A96F163ED4891440
5 changed files with 9 additions and 9 deletions

View file

@ -783,7 +783,7 @@ void yyreducepos(uint32_t off)
void yylexerror( const char *msg )
{
gi.Printf( "%s\n%s", msg, yytext );
gi.DPrintf( "%s\n%s", msg, yytext );
assert( 0 );
}

View file

@ -78,7 +78,7 @@ void yyreducepos(uint32_t off)
void yylexerror( const char *msg )
{
gi.Printf( "%s\n%s", msg, yytext );
gi.DPrintf( "%s\n%s", msg, yytext );
assert( 0 );
}