From: Michael Brown Date: Tue, 19 Dec 2006 01:16:43 +0000 (+0000) Subject: Assume a 24-line screen, since we can't (easily) avoid scrolling after X-Git-Tag: v0.9.3~902 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cdfe61662bb494fd8a204f4a71e7f11c41f4c7cd;p=thirdparty%2Fipxe.git Assume a 24-line screen, since we can't (easily) avoid scrolling after printing in the bottom-right position. --- diff --git a/src/hci/mucurses/ansi_screen.c b/src/hci/mucurses/ansi_screen.c index 25087a508..194439a83 100644 --- a/src/hci/mucurses/ansi_screen.c +++ b/src/hci/mucurses/ansi_screen.c @@ -2,7 +2,7 @@ #include unsigned short _COLS = 80; -unsigned short _LINES = 25; +unsigned short _LINES = 24; static void ansiscr_init ( struct _curses_screen *scr ) { /* Reset terminal attributes and clear screen */