mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-26 03:30:46 +00:00
Fix compile warning
git-svn-id: https://svn.eduke32.com/eduke32@5609 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
1b93d87b1a
commit
b8eb4af3f7
1 changed files with 5 additions and 1 deletions
|
@ -5353,7 +5353,7 @@ finish_qsprintf:
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case ITER_LOOPOFWALL:
|
case ITER_LOOPOFWALL:
|
||||||
if ((unsigned) parm2 >= numwalls) goto badindex;
|
if ((unsigned) parm2 >= (unsigned)numwalls) goto badindex;
|
||||||
{
|
{
|
||||||
int jj = parm2;
|
int jj = parm2;
|
||||||
do
|
do
|
||||||
|
@ -5518,7 +5518,11 @@ finish_qsprintf:
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
VM_CONDITIONAL(tw);
|
VM_CONDITIONAL(tw);
|
||||||
|
|
||||||
|
#undef IFAWAYDIST
|
||||||
|
|
||||||
}
|
}
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue