From 367b2994e95e508d98f856abf1e17159cceb6917 Mon Sep 17 00:00:00 2001 From: Erwan Velu Date: Thu, 16 Apr 2009 21:34:00 +0200 Subject: [PATCH] hdt: menu should be 80x25 Impact: increasing menu size to improve display 80x24 was a mistake, it have to be 80x25 --- com32/hdt/hdt-menu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/com32/hdt/hdt-menu.c b/com32/hdt/hdt-menu.c index b531bc7..be0b472 100644 --- a/com32/hdt/hdt-menu.c +++ b/com32/hdt/hdt-menu.c @@ -112,7 +112,7 @@ void setup_menu(char *version) { /* Creating the menu */ init_menusystem(version); - set_window_size(0, 0, 24, 80); + set_window_size(0, 0, 25, 80); /* Register the menusystem handler */ // reg_handler(HDLR_SCREEN,&msys_handler); -- 2.7.4