mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 08:52:00 +00:00
- Clean up some interpolatedvalue()
calls.
This commit is contained in:
parent
274899c9db
commit
88e92a15a6
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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.;
|
||||
|
|
Loading…
Reference in a new issue