Skip to content

Commit

Permalink
engine: common: insert spaces between arguments in echo command
Browse files Browse the repository at this point in the history
  • Loading branch information
a1batross committed Aug 22, 2024
1 parent cd86f80 commit 5777431
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/common/cmd.c
Original file line number Diff line number Diff line change
Expand Up @@ -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" );
}

Expand Down

0 comments on commit 5777431

Please sign in to comment.