mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-15 16:41:22 +00:00
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:
parent
2bbcda8854
commit
a774e66dd1
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue