Fix wrong check

This commit is contained in:
Pan7 2016-07-27 16:05:07 +02:00
parent 1051df45e3
commit c60e8989cf

View file

@ -278,7 +278,7 @@ void Con_CheckResize (void)
if (width == con.linewidth)
return;
if (width < 1) // video hasn't been initialized yet
if (con.linewidth < 1) // video hasn't been initialized yet
{
width = DEFAULT_CONSOLE_WIDTH;
con.linewidth = width;