Use full screen width for console

This commit is contained in:
Tim Angus 2025-10-27 15:06:00 +00:00
parent 7d6350bf66
commit f2c1f990f8

View File

@ -283,7 +283,7 @@ void Con_CheckResize (void)
int i, j, width, oldwidth, oldtotallines, numlines, numchars; int i, j, width, oldwidth, oldtotallines, numlines, numchars;
short tbuf[CON_TEXTSIZE]; short tbuf[CON_TEXTSIZE];
width = (SCREEN_WIDTH / SMALLCHAR_WIDTH) - 2; width = (cls.glconfig.vidWidth / SMALLCHAR_WIDTH) - 2;
if (width == con.linewidth) if (width == con.linewidth)
return; return;