scrolling bug fix
This commit is contained in:
parent
8d23c076eb
commit
2479da7291
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue