From 3e9f2df2bf20177834db74e07b1b712ebd77d286 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Thu, 25 Aug 2022 21:21:22 +0300 Subject: [PATCH] engine: client: fix incorrect mark for ConsolePrint notifications --- engine/client/cl_game.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/client/cl_game.c b/engine/client/cl_game.c index 58ed7ca1..6bb50705 100644 --- a/engine/client/cl_game.c +++ b/engine/client/cl_game.c @@ -1940,7 +1940,7 @@ static void GAME_EXPORT pfnConsolePrint( const char *string ) return; // WON GoldSrc behavior - if( string[0] != '1' ) + if( string[0] != 1 ) Con_Printf( "%s", string ); else Con_NPrintf( 0, "%s", string + 1 );