mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
- Fixed: When checking the REJECT contents one byte at a time, P_LoadReject() used rejectsize
instead of i as an index into rejectmatrix. SVN r3456 (trunk)
This commit is contained in:
parent
37a322e46b
commit
2e9abe7408
1 changed files with 1 additions and 1 deletions
|
@ -3184,7 +3184,7 @@ void P_LoadReject (MapData * map, bool junk)
|
||||||
qwords *= 8;
|
qwords *= 8;
|
||||||
for (i = 0; i < rejectsize; ++i)
|
for (i = 0; i < rejectsize; ++i)
|
||||||
{
|
{
|
||||||
if (rejectmatrix[qwords+rejectsize] != 0)
|
if (rejectmatrix[qwords + i] != 0)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue