engine: fix inverted check in debug log output
Why there is even this check in the first place???
This commit is contained in:
parent
da6586b847
commit
f4a3b8571d
1 changed files with 1 additions and 1 deletions
|
@ -338,7 +338,7 @@ static void Con_Printfv( qboolean debug, const char *szFmt, va_list args )
|
|||
|
||||
add_newline = Q_vsnprintf( buffer, sizeof( buffer ), szFmt, args ) < 0;
|
||||
|
||||
if( debug && Q_strcmp( buffer, "0\n" ))
|
||||
if( debug && !Q_strcmp( buffer, "0\n" ))
|
||||
return; // hlrally spam
|
||||
|
||||
Sys_Print( buffer );
|
||||
|
|
Loading…
Add table
Reference in a new issue