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:
sezero 2012-01-29 18:04:28 +00:00
parent 4b284d9547
commit ea46ad2ca6

View file

@ -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;