hdt: clear_screen have to reset the xy position
authorErwan Velu <erwan.velu@free.fr>
Thu, 26 Nov 2009 22:06:35 +0000 (23:06 +0100)
committerErwan Velu <erwan.velu@free.fr>
Fri, 4 Dec 2009 09:11:14 +0000 (10:11 +0100)
Impact: visual

This commit avoid clear_screen letting the cursor at the same place
after the clearing. It have to be reset to

com32/hdt/hdt-common.c

index 75c30b9..c802abd 100644 (file)
@@ -555,6 +555,7 @@ void clear_screen(void)
     set_us_g0_charset();
     display_cursor(false);
     clear_entire_screen();
+    gotoxy(0,0);
     reset_more_printf();
 }