From: Erwan Velu Date: Thu, 26 Nov 2009 22:06:35 +0000 (+0100) Subject: hdt: clear_screen have to reset the xy position X-Git-Tag: syslinux-3.84-pre6~52 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=91817a19429135c6fd8f5c96a2ebe8d024dff7f7;p=platform%2Fupstream%2Fsyslinux.git hdt: clear_screen have to reset the xy position Impact: visual This commit avoid clear_screen letting the cursor at the same place after the clearing. It have to be reset to --- diff --git a/com32/hdt/hdt-common.c b/com32/hdt/hdt-common.c index 75c30b9..c802abd 100644 --- a/com32/hdt/hdt-common.c +++ b/com32/hdt/hdt-common.c @@ -555,6 +555,7 @@ void clear_screen(void) set_us_g0_charset(); display_cursor(false); clear_entire_screen(); + gotoxy(0,0); reset_more_printf(); }