mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +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;
|
||||
for (i = 0; i < rejectsize; ++i)
|
||||
{
|
||||
if (rejectmatrix[qwords+rejectsize] != 0)
|
||||
if (rejectmatrix[qwords + i] != 0)
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue