From f39865e8e4aa1a8918c64cfc40fb0acc644861a4 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Tue, 15 Sep 2009 07:45:16 +0000 Subject: The default terminal size should be 80x24, not 80x25. --- server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'server.c') diff --git a/server.c b/server.c index 4afab67d..268a79dd 100644 --- a/server.c +++ b/server.c @@ -97,7 +97,7 @@ server_create_client(int fd) c->session = NULL; c->tty.sx = 80; - c->tty.sy = 25; + c->tty.sy = 24; screen_init(&c->status, c->tty.sx, 1, 0); c->message_string = NULL; -- cgit