diff --git a/src/d_main.c b/src/d_main.c index 4a824c8e6..f90ba411e 100644 --- a/src/d_main.c +++ b/src/d_main.c @@ -787,6 +787,9 @@ void D_SRB2Loop(void) entertimefrac = FLOAT_TO_FIXED(entertime - tictime); + if (entertimefrac < FRACUNIT) + entertimefrac = FRACUNIT; + // renderdeltatics is a bit awkard to evaluate, since the system time interface is whole tic-based renderdeltatics = realtics * FRACUNIT; if (entertimefrac > rendertimefrac)