mirror of
https://github.com/YGGverse/xash3d-fwgs.git
synced 2025-01-18 19:10:37 +00:00
fix windows build
This commit is contained in:
parent
8b07916598
commit
ca3913cd88
@ -1091,9 +1091,10 @@ void Con_LoadHistory( void )
|
||||
if( *pFile == '\n')
|
||||
{
|
||||
int len = pFile - pLine + 1;
|
||||
field_t *f;
|
||||
if( len > 255 ) len = 255;
|
||||
Con_ClearField( &con.historyLines[con.nextHistoryLine] );
|
||||
field_t *f = &con.historyLines[con.nextHistoryLine % CON_HISTORY];
|
||||
f = &con.historyLines[con.nextHistoryLine % CON_HISTORY];
|
||||
f->widthInChars = con.linewidth;
|
||||
f->cursor = len - 1;
|
||||
Q_strncpy( f->buffer, pLine, len);
|
||||
|
Loading…
x
Reference in New Issue
Block a user