mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
finally get the say scroller working
This commit is contained in:
parent
6dbdfc0464
commit
e090f8dc09
1 changed files with 1 additions and 1 deletions
|
@ -573,7 +573,7 @@ DrawNotify (void)
|
|||
Draw_Character (i << 3, v,
|
||||
10 + ((int) (*con_data.realtime
|
||||
* con_cursorspeed) & 1));
|
||||
if (strlen (s) - il->scroll + skip > con_linewidth - 1)
|
||||
if (strlen (s) + skip > con_linewidth - 1)
|
||||
Draw_Character ((con_linewidth - 1) << 3, v, '>' | 0x80);
|
||||
v += 8;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue