diff options
author | Michael Brown | 2006-12-19 02:16:43 +0100 |
---|---|---|
committer | Michael Brown | 2006-12-19 02:16:43 +0100 |
commit | cdfe61662bb494fd8a204f4a71e7f11c41f4c7cd (patch) | |
tree | e9fae51d23af65946656b46bb409c6b0d0b654b5 /src/hci/mucurses | |
parent | Optimise bios_putchar for speed(!) by avoiding two separate real-mode (diff) | |
download | ipxe-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/hci/mucurses')
-rw-r--r-- | src/hci/mucurses/ansi_screen.c | 2 |
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 */ |