mirror of
https://github.com/ioquake/ioq3.git
synced 2025-02-21 11:11:20 +00:00
Don't look for colors past win32 input line length
This commit is contained in:
parent
768083b46f
commit
daa9619913
1 changed files with 5 additions and 3 deletions
|
@ -195,11 +195,13 @@ static void CON_Show( void )
|
|||
// build a space-padded CHAR_INFO array
|
||||
for( i = 0; i < MAX_EDIT_LINE; i++ )
|
||||
{
|
||||
if( Q_IsColorString( qconsole_line + i ) )
|
||||
attrib = CON_ColorCharToAttrib( *( qconsole_line + i + 1 ) );
|
||||
|
||||
if( i < qconsole_linelen )
|
||||
{
|
||||
if( Q_IsColorString( qconsole_line + i ) )
|
||||
attrib = CON_ColorCharToAttrib( *( qconsole_line + i + 1 ) );
|
||||
|
||||
line[ i ].Char.AsciiChar = qconsole_line[ i ];
|
||||
}
|
||||
else
|
||||
line[ i ].Char.AsciiChar = ' ';
|
||||
|
||||
|
|
Loading…
Reference in a new issue