engine: client: fix incorrect mark for ConsolePrint notifications

This commit is contained in:
Alibek Omarov 2022-08-25 21:21:22 +03:00
parent fce8afabfb
commit 3e9f2df2bf

View File

@ -1940,7 +1940,7 @@ static void GAME_EXPORT pfnConsolePrint( const char *string )
return; return;
// WON GoldSrc behavior // WON GoldSrc behavior
if( string[0] != '1' ) if( string[0] != 1 )
Con_Printf( "%s", string ); Con_Printf( "%s", string );
else else
Con_NPrintf( 0, "%s", string + 1 ); Con_NPrintf( 0, "%s", string + 1 );