diff options
Diffstat (limited to 'src/user/app/vterm/vterm.c')
-rw-r--r-- | src/user/app/vterm/vterm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/user/app/vterm/vterm.c b/src/user/app/vterm/vterm.c index 43180b2..50a7b98 100644 --- a/src/user/app/vterm/vterm.c +++ b/src/user/app/vterm/vterm.c @@ -26,7 +26,7 @@ void in_char(char c) { cursor.x = 0; cursor.y++; } - while (cursor.y * font.h >= fb.height) scroll(); + while ((cursor.y + 1) * font.h >= fb.height) scroll(); } int main(); |