From 7fc72d03ffdf4e7b7ff42f4379e2a56011d22f4f Mon Sep 17 00:00:00 2001 From: James R Date: Mon, 17 Jan 2022 23:07:04 -0800 Subject: [PATCH] Uncap frame interpolation on the viewpoint --- src/r_fps.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/r_fps.c b/src/r_fps.c index 59f10bae8..67f96498d 100644 --- a/src/r_fps.c +++ b/src/r_fps.c @@ -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);