diff --git a/sortix/vga.cpp b/sortix/vga.cpp index a069c714..37147088 100644 --- a/sortix/vga.cpp +++ b/sortix/vga.cpp @@ -86,6 +86,7 @@ namespace Sortix if ( VGA::VGA_SIZE - offset < count ) { count = VGA::VGA_SIZE - offset; } Maxsi::Memory::Copy(VGA::VGA + offset, src, count); offset = (offset + count) % VGA::VGA_SIZE; + VGA::SetCursor(VGA::WIDTH, VGA::HEIGHT-1); return count; }