summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMichael Brown2006-12-19 02:16:43 +0100
committerMichael Brown2006-12-19 02:16:43 +0100
commitcdfe61662bb494fd8a204f4a71e7f11c41f4c7cd (patch)
treee9fae51d23af65946656b46bb409c6b0d0b654b5 /src
parentOptimise bios_putchar for speed(!) by avoiding two separate real-mode (diff)
downloadipxe-cdfe61662bb494fd8a204f4a71e7f11c41f4c7cd.tar.gz
ipxe-cdfe61662bb494fd8a204f4a71e7f11c41f4c7cd.tar.xz
ipxe-cdfe61662bb494fd8a204f4a71e7f11c41f4c7cd.zip
Assume a 24-line screen, since we can't (easily) avoid scrolling after
printing in the bottom-right position.
Diffstat (limited to 'src')
-rw-r--r--src/hci/mucurses/ansi_screen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hci/mucurses/ansi_screen.c b/src/hci/mucurses/ansi_screen.c
index 25087a50..194439a8 100644
--- a/src/hci/mucurses/ansi_screen.c
+++ b/src/hci/mucurses/ansi_screen.c
@@ -2,7 +2,7 @@
#include <console.h>
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 */