- Exhumed: Replace use of pushmove_old() inline wrapper with pushmove().

This commit is contained in:
Mitch Richters 2021-10-30 22:00:54 +11:00 committed by Christoph Oelckers
parent 0ee3b5af1c
commit bdbe57a6b6
2 changed files with 2 additions and 2 deletions

View file

@ -910,7 +910,7 @@ void AIPlayer::Tick(RunListEvent* ev)
short var_54 = pPlayerSprite->sectnum;
pushmove_old(&pPlayerSprite->x, &pPlayerSprite->y, &pPlayerSprite->z, &var_54, pPlayerSprite->clipdist << 2, 5120, -5120, CLIPMASK0);
pushmove(&pPlayerSprite->pos, &var_54, pPlayerSprite->clipdist << 2, 5120, -5120, CLIPMASK0);
if (var_54 != pPlayerSprite->sectnum) {
ChangeActorSect(pPlayerActor, var_54);
}

View file

@ -283,7 +283,7 @@ void AISet::Tick(RunListEvent* ev)
auto nMov = MoveCreature(pActor);
pushmove_old(&pSprite->x, &pSprite->y, &pSprite->z, &pSprite->sectnum, pSprite->clipdist << 2, 5120, -5120, CLIPMASK0);
pushmove(&pSprite->pos, &pSprite->sectnum, pSprite->clipdist << 2, 5120, -5120, CLIPMASK0);
if (pSprite->zvel > 4000)
{