From 8b175398f8165720cd3751e1aa98a366b182acb2 Mon Sep 17 00:00:00 2001
From: Sally Coolatta <tehrealsalt@gmail.com>
Date: Mon, 30 May 2022 18:22:46 -0400
Subject: [PATCH] Use old behavior when dipping below 35 with interp

---
 src/d_main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/d_main.c b/src/d_main.c
index 0ae48c927f..e73cb749e2 100644
--- a/src/d_main.c
+++ b/src/d_main.c
@@ -853,7 +853,7 @@ void D_SRB2Loop(void)
 
 			renderdeltatics = FLOAT_TO_FIXED(deltatics);
 
-			if (!(paused || P_AutoPause()) && !hu_stopped)
+			if (!(paused || P_AutoPause()) && deltatics < 1.0 && !hu_stopped)
 			{
 				rendertimefrac = g_time.timefrac;
 			}
-- 
GitLab