mirror of
https://github.com/UberGames/ioef.git
synced 2025-01-19 07:30:51 +00:00
Fixed win32 dedicated server console output. It use to write input line and then write output over the top of it. Reported by Ensiform.
This commit is contained in:
parent
3774a8aeee
commit
0866b667e0
1 changed files with 5 additions and 3 deletions
|
@ -326,13 +326,14 @@ char *CON_Input( void )
|
|||
}
|
||||
}
|
||||
|
||||
if( newlinepos < 0) {
|
||||
CON_Show();
|
||||
|
||||
if( newlinepos < 0)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
if( !qconsole_linelen )
|
||||
{
|
||||
CON_Show();
|
||||
Com_Printf( "\n" );
|
||||
return NULL;
|
||||
}
|
||||
|
@ -341,6 +342,7 @@ char *CON_Input( void )
|
|||
Com_Printf( "%s\n", qconsole_line );
|
||||
|
||||
qconsole_linelen = 0;
|
||||
CON_Show();
|
||||
|
||||
return qconsole_line;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue