Uncap frame interpolation on the viewpoint

This commit is contained in:
James R 2022-01-17 23:07:04 -08:00 committed by SinnamonLat
parent 27aa5d43e5
commit a90953c22d

View file

@ -84,8 +84,10 @@ void R_InterpolateView(fixed_t frac)
{ {
if (frac < 0) if (frac < 0)
frac = 0; frac = 0;
#if 0
if (frac > FRACUNIT) if (frac > FRACUNIT)
frac = FRACUNIT; frac = FRACUNIT;
#endif
viewx = oldview->x + R_LerpFixed(oldview->x, newview->x, frac); viewx = oldview->x + R_LerpFixed(oldview->x, newview->x, frac);
viewy = oldview->y + R_LerpFixed(oldview->y, newview->y, frac); viewy = oldview->y + R_LerpFixed(oldview->y, newview->y, frac);