2
0
mirror of https://github.com/FWGS/xash3d-fwgs synced 2024-11-22 01:45:19 +01:00

engine: client: console: cleanup input buffer from line feed characters before pushing it to the console history

This commit is contained in:
Alibek Omarov 2024-05-15 03:08:22 +03:00
parent 758c908d5a
commit 052e0445ab

View File

@ -1549,6 +1549,9 @@ void Key_Console( int key )
Con_Printf( ">%s\n", con.input.buffer );
// copy line to history buffer
// just in case, remove all CR and LF characters pushing it to the history
// not sure how they get even added in the first place
COM_RemoveLineFeed( con.input.buffer, sizeof( con.input.buffer ));
Con_HistoryAppend( &con.history, &con.input );
Con_ClearField( &con.input );