From a90953c22d8ccb5644975efcc2df62bbb2d2e9fd 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);