From f2c1f990f8cc76dc90f5640cf2df3720104c34a5 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Mon, 27 Oct 2025 15:06:00 +0000 Subject: [PATCH] Use full screen width for console --- code/client/cl_console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/client/cl_console.c b/code/client/cl_console.c index 0be0c118..44dc7621 100644 --- a/code/client/cl_console.c +++ b/code/client/cl_console.c @@ -283,7 +283,7 @@ void Con_CheckResize (void) int i, j, width, oldwidth, oldtotallines, numlines, numchars; short tbuf[CON_TEXTSIZE]; - width = (SCREEN_WIDTH / SMALLCHAR_WIDTH) - 2; + width = (cls.glconfig.vidWidth / SMALLCHAR_WIDTH) - 2; if (width == con.linewidth) return;