Browse Source

engine: client: fix incorrect mark for ConsolePrint notifications

pull/2/head
Alibek Omarov 2 years ago
parent
commit
3e9f2df2bf
  1. 2
      engine/client/cl_game.c

2
engine/client/cl_game.c

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

Loading…
Cancel
Save