diff --git a/ChangeLog b/ChangeLog index 8d18362d3..7316a088f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-07-30 Robert Millan + + * term/i386/pc/vga_text.c (grub_console_cls): Use + grub_console_gotoxy() to go back to beginning of the screen. + Found by Patrick Georgi + 2008-07-29 Christian Franke * util/update-grub_lib.in (make_system_path_relative_to_its_root): diff --git a/term/i386/pc/vga_text.c b/term/i386/pc/vga_text.c index 07a254469..58a3c6c2e 100644 --- a/term/i386/pc/vga_text.c +++ b/term/i386/pc/vga_text.c @@ -124,6 +124,7 @@ grub_console_cls (void) int i; for (i = 0; i < ROWS * COLS; i++) ((short *) VGA_TEXT_SCREEN)[i] = ' ' | (grub_console_cur_color << 8); + grub_console_gotoxy (0, 0); } void