From 83829c2136a393d0897c6f8ba1f55d2d97056eab Mon Sep 17 00:00:00 2001 From: Bradley Bell Date: Thu, 4 Dec 2014 03:32:17 -0800 Subject: [PATCH] fix window size --- main/console.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/main/console.c b/main/console.c index 800b2c54..fed55ff8 100644 --- a/main/console.c +++ b/main/console.c @@ -81,10 +81,10 @@ int con_init(void) grs_screen fake_screen; grs_font fake_font; - fake_screen.sc_w = 200; - fake_screen.sc_h = 100; - fake_font.ft_w = 1; - fake_font.ft_h = 1; + fake_screen.sc_w = 320; + fake_screen.sc_h = 200; + fake_font.ft_w = 5; + fake_font.ft_h = 5; Console = CON_Init(&fake_font, &fake_screen, CON_NUM_LINES, 0, 0, 320, 200); -- 2.39.2