finally get the say scroller working

This commit is contained in:
Bill Currie 2002-01-17 02:10:36 +00:00
parent 6dbdfc0464
commit e090f8dc09

View file

@ -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;
}