scrolling bug fix

This commit is contained in:
Julian Barathieu 2019-05-18 19:56:35 +02:00
parent 8d23c076eb
commit 2479da7291
1 changed files with 1 additions and 3 deletions

View File

@ -90,8 +90,7 @@ void IoScrollUp(void)
BLockBuf(BStdOut);
uchar *currentLine = BStdOut->wp - BStdOut->lastLF;
assert(currentLine >= BStdOut->buf);
// Scrollable lines
uint scrabble = max(0, (currentLine-BStdOut->buf)/BStdOut->lineLen
- BStdOut->nLines + 1);
@ -100,7 +99,6 @@ void IoScrollUp(void)
bscroll++;
bvgaflusher(BStdOut);
BUnlockBuf(BStdOut);
}