mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 07:21:58 +00:00
gl_vidsdl.c (VID_Init): fixed a -Wparentheses-equality warning from clang
git-svn-id: http://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@623 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
4b284d9547
commit
ea46ad2ca6
1 changed files with 1 additions and 1 deletions
|
@ -1292,7 +1292,7 @@ void VID_Init (void)
|
|||
{
|
||||
for (i = 1; i < nummodes; i++)
|
||||
{
|
||||
if ((modelist[i].width == width))
|
||||
if (modelist[i].width == width)
|
||||
{
|
||||
vid_default = i;
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue