The default terminal size should be 80x24, not 80x25.

This commit is contained in:
Nicholas Marriott
2009-09-15 07:45:16 +00:00
parent 8548624676
commit f39865e8e4
3 changed files with 4 additions and 4 deletions

View File

@ -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;