From 538c6881026a19ce90838346ee36d1517c25a4cf Mon Sep 17 00:00:00 2001 From: cy384 Date: Tue, 13 Jul 2021 19:27:41 -0400 Subject: [PATCH] fix initial console cell width (again) --- ssheven-console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssheven-console.c b/ssheven-console.c index aec7e0d..f07ac03 100644 --- a/ssheven-console.c +++ b/ssheven-console.c @@ -816,7 +816,7 @@ void console_setup(void) con.cell_height = fi.ascent + fi.descent + fi.leading + 1; font_offset = fi.descent; - con.cell_width = fi.widMax; + con.cell_width = CharWidth(' '); TextFont(save_font); TextSize(save_font_size);