Uncap frame interpolation on the viewpoint

This commit is contained in:
James R 2022-01-17 23:07:04 -08:00
parent 06b7c17263
commit 7fc72d03ff

View file

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