Fixed effective viewroll doubling.

This commit is contained in:
toaster 2022-05-21 15:33:35 +01:00
parent 38e6cba181
commit dff5fc37f1

View file

@ -150,7 +150,7 @@ static void R_SetupFreelook(player_t *player, boolean skybox)
void R_InterpolateViewRollAngle(fixed_t frac)
{
viewroll = oldview->roll + R_LerpAngle(oldview->roll, newview->roll, frac);
viewroll = R_LerpAngle(oldview->roll, newview->roll, frac);
}
void R_InterpolateView(fixed_t frac)