1
0
mirror of https://gitlab.os-k.eu/os-k-team/os-k.git synced 2023-08-25 14:03:10 +02:00

scrolling bug fix

This commit is contained in:
Julian Barathieu 2019-05-18 19:57:57 +02:00
parent 2479da7291
commit b82dc4f0a3

View File

@ -79,9 +79,11 @@ error_t bvgaflusher(Buffer_t *buf)
void IoScrollDown(void)
{
BLockBuf(BStdOut);
if (bscroll > 0)
bscroll--;
bvgaflusher(BStdOut);
BUnlockBuf(BStdOut);
}