mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 14:52:01 +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;
|
||||
case ITER_LOOPOFWALL:
|
||||
if ((unsigned) parm2 >= numwalls) goto badindex;
|
||||
if ((unsigned) parm2 >= (unsigned)numwalls) goto badindex;
|
||||
{
|
||||
int jj = parm2;
|
||||
do
|
||||
|
@ -5518,7 +5518,11 @@ finish_qsprintf:
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
VM_CONDITIONAL(tw);
|
||||
|
||||
#undef IFAWAYDIST
|
||||
|
||||
}
|
||||
continue;
|
||||
|
||||
|
|
Loading…
Reference in a new issue