mirror of
https://github.com/ZDoom/Raze.git
synced 2025-04-04 15:00:46 +00:00
- Exhumed: Replace use of pushmove_old()
inline wrapper with pushmove()
.
This commit is contained in:
parent
0ee3b5af1c
commit
bdbe57a6b6
2 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue