From 2861e7688aad69605433060a431db2859b1dcf8a Mon Sep 17 00:00:00 2001 From: Sally Coolatta 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 ed58948d..171561fe 100644 --- a/src/d_main.c +++ b/src/d_main.c @@ -747,7 +747,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; }