mirror of
https://github.com/DrBeef/Raze.git
synced 2025-02-16 17:01:39 +00:00
- SW: Don't interpolate the player's sprite in InterpSectorSprites()
, it's interpolated elsewhere.
* Fixes #845.
This commit is contained in:
parent
3271c2011e
commit
4f8909db96
1 changed files with 3 additions and 0 deletions
|
@ -255,6 +255,9 @@ void InterpSectorSprites(sectortype* sect, bool state)
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (actor->spr.statnum >= STAT_PLAYER0 && actor->spr.statnum <= STAT_PLAYER7)
|
||||||
|
continue;
|
||||||
|
|
||||||
if (state)
|
if (state)
|
||||||
StartInterpolation(actor, Interp_Sprite_Z);
|
StartInterpolation(actor, Interp_Sprite_Z);
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue