- Clean up some interpolatedvalue() calls.

This commit is contained in:
Mitchell Richters 2022-11-07 17:52:53 +11:00
parent 274899c9db
commit 88e92a15a6
2 changed files with 2 additions and 2 deletions

View file

@ -526,7 +526,7 @@ static void SetupView(PLAYER* pPlayer, DVector3& cPos, DAngle& cA, DAngle& cH, s
{
cPos.Z += bobHeight;
}
cPos.Z -= interpolatedvalue(-10., 10., (cH + DAngle90) / DAngle180);
cPos.Z -= interpolatedvalue(0., 10., cH / DAngle90);
}
else
{

View file

@ -232,7 +232,7 @@ void displayweapon_d(int snum, double interpfrac)
plravel = getavel(snum) * (1. / 16.);
auto horiz = !SyncInput() ? p->horizon.sum() : p->horizon.interpolatedsum(interpfrac);
horiz16th = interpolatedvalue(-16., 16., (horiz + DAngle90) / DAngle180);
horiz16th = interpolatedvalue(0., 16., horiz / DAngle90);
look_anghalf = p->angle.look_anghalf(interpfrac);
looking_arc = p->angle.looking_arc(interpfrac);
hard_landing *= 8.;