diff --git a/src/userland/vga/main.c b/src/userland/vga/main.c index f132276..97d1d96 100644 --- a/src/userland/vga/main.c +++ b/src/userland/vga/main.c @@ -20,9 +20,11 @@ switch (c) { case '\r': offset = (offset / WIDTH) * WIDTH; + setCursorOffset(offset); return; case '\n': offset = (offset / WIDTH + 1) * WIDTH; + setCursorOffset(offset); return; case '\b': offset--;