mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-02-18 01:52:34 +00:00
- fixed: The weapon sprite fudge offset should not be added when just interpolating the position and calculating the delta.
This commit is contained in:
parent
0f9758bb75
commit
b43609c701
1 changed files with 1 additions and 1 deletions
|
@ -1624,7 +1624,7 @@ void R_DrawPlayerSprites ()
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
wx = weapon->oldx + (weapon->x - weapon->oldx) * r_TicFracF;
|
wx = weapon->oldx + (weapon->x - weapon->oldx) * r_TicFracF;
|
||||||
wy = weapon->oldy + (weapon->y - weapon->oldy) * r_TicFracF + WEAPON_FUDGE_Y;
|
wy = weapon->oldy + (weapon->y - weapon->oldy) * r_TicFracF;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue