- 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:
Randy Heit 2012-03-20 02:09:48 +00:00
parent 37a322e46b
commit 2e9abe7408
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}