gl_vidsdl.c (VID_Init): fixed a -Wparentheses-equality warning from clang

git-svn-id: svn+ssh://svn.code.sf.net/p/quakespasm/code/trunk@623 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
sezero 2012-01-29 18:04:28 +00:00
parent 2bbcda8854
commit a774e66dd1

View file

@ -1292,7 +1292,7 @@ void VID_Init (void)
{ {
for (i = 1; i < nummodes; i++) for (i = 1; i < nummodes; i++)
{ {
if ((modelist[i].width == width)) if (modelist[i].width == width)
{ {
vid_default = i; vid_default = i;
break; break;