mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 17:01:28 +00:00
- Blood: Fix off-by-one error in trProcessBusy()
loop.
* Originated from 0beb91e17e
.
This commit is contained in:
parent
a20a56d9e7
commit
f91f3eacca
1 changed files with 1 additions and 1 deletions
|
@ -2130,7 +2130,7 @@ void trProcessBusy(void)
|
|||
{
|
||||
sect.velCeil = sect.velFloor = 0;
|
||||
}
|
||||
for (int i = gBusy.Size(); i >= 0; i--)
|
||||
for (int i = gBusy.Size()-1; i >= 0; i--)
|
||||
{
|
||||
int nStatus;
|
||||
int oldBusy = gBusy[i].busy;
|
||||
|
|
Loading…
Reference in a new issue