This seems to fix the camera stuttering in netgames when I try it on my own

Feel like this might be wrong so TRY IT first!!
This commit is contained in:
Sally Coolatta 2021-12-01 06:45:02 -05:00
parent 43356ca73e
commit 6ecac4159a

View file

@ -774,7 +774,7 @@ void D_SRB2Loop(void)
// process tics (but maybe not if realtic == 0) // process tics (but maybe not if realtic == 0)
TryRunTics(realtics); TryRunTics(realtics);
if (cv_frameinterpolation.value == 1 && !(paused || P_AutoPause())) if (cv_frameinterpolation.value == 1 && !(paused || P_AutoPause() || hu_stopped))
{ {
fixed_t entertimefrac = I_GetTimeFrac(); fixed_t entertimefrac = I_GetTimeFrac();
// renderdeltatics is a bit awkard to evaluate, since the system time interface is whole tic-based // renderdeltatics is a bit awkard to evaluate, since the system time interface is whole tic-based