2
0
mirror of https://github.com/FWGS/xash3d-fwgs synced 2025-01-14 04:25:35 +01:00

engine: common: insert spaces between arguments in echo command

This commit is contained in:
Alibek Omarov 2024-08-22 16:45:16 +03:00
parent cd86f80203
commit 5777431577

View File

@ -387,7 +387,7 @@ static void Cmd_Echo_f( void )
int i;
for( i = 1; i < Cmd_Argc(); i++ )
Con_Printf( "%s", Cmd_Argv( i ));
Con_Printf( "%s ", Cmd_Argv( i ));
Con_Printf( "\n" );
}