From 6406427eb71c104b555a50c704527f4946e71f50 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Fri, 11 Dec 2020 11:51:52 +0100 Subject: [PATCH] - added check for M_IsAnimated to TryRunTics. --- src/d_net.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/d_net.cpp b/src/d_net.cpp index d41285f637..28e28637aa 100644 --- a/src/d_net.cpp +++ b/src/d_net.cpp @@ -1851,11 +1851,7 @@ void TryRunTics (void) int counts; int numplaying; - // If paused, do not eat more CPU time than we need, because it - // will all be wasted anyway. - if (pauseext) - r_NoInterpolate = true; - bool doWait = cl_capfps || r_NoInterpolate /*|| netgame*/; + bool doWait = (cl_capfps || pauseext || (r_NoInterpolate && !M_IsAnimated() /*&& gamestate != GS_INTERMISSION && gamestate != GS_INTRO*/)); // get real tics if (doWait)