tWe shouldn't really say that the user interface area extends past the bottom of the screen (for one thing, this confuses the Win32 text-mode client). Now fixed. - vaccinewars - be a doctor and try to vaccinate the world
(HTM) git clone git://src.adamsgaard.dk/vaccinewars
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 88b462fb366969ddcb78b437c260d0c6dd4d5ff8
(DIR) parent ccef0a7db6522f200043885179d6ea349edc228d
(HTM) Author: Ben Webb <ben@salilab.org>
Date: Wed, 5 Feb 2003 15:54:27 +0000
We shouldn't really say that the user interface area extends past the
bottom of the screen (for one thing, this confuses the Win32 text-mode
client). Now fixed.
Diffstat:
M src/curses_client/curses_client.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) diff --git a/src/curses_client/curses_client.c b/src/curses_client/curses_client.c
t@@ -186,7 +186,7 @@ static int get_ui_area_top(void)
static int get_ui_area_bottom(void)
{
- return Depth;
+ return Depth - 1;
}
static int get_prompt_line(void)