2004-10-08 Hollis Blanchard <hollis@penguinppc.org>

* term/powerpc/ieee1275/ieee1275.c (grub_ofconsole_cls): Use an ANSI
	escape sequence instead of a literal ^L. Also call
	grub_ofconsole_gotoxy.
This commit is contained in:
hollisb 2004-10-09 02:37:18 +00:00
parent 9f2220ef28
commit 026fa2f9ef
2 changed files with 8 additions and 1 deletions

View file

@ -222,7 +222,8 @@ static void
grub_ofconsole_cls (void)
{
/* Clear the screen. */
grub_ofconsole_writeesc (" ");
grub_ofconsole_writeesc ("\e[2J");
grub_gotoxy (0, 0);
}
static void