mirror of
https://github.com/ioquake/ioq3.git
synced 2025-05-30 16:41:31 +00:00
Fix wrong check
This commit is contained in:
parent
1051df45e3
commit
c60e8989cf
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue