From cdfe61662bb494fd8a204f4a71e7f11c41f4c7cd Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Tue, 19 Dec 2006 01:16:43 +0000 Subject: [PATCH] Assume a 24-line screen, since we can't (easily) avoid scrolling after printing in the bottom-right position. --- src/hci/mucurses/ansi_screen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 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 */