From b253ae123f8dc0fd93b49c42b4cc61794f859a69 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Thu, 3 Sep 2020 18:36:37 +0200 Subject: [PATCH] - run screen jobs with uncapped frame rate. Fixes #325 --- source/core/mainloop.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/core/mainloop.cpp b/source/core/mainloop.cpp index 6302a7b30..19ae1d70f 100644 --- a/source/core/mainloop.cpp +++ b/source/core/mainloop.cpp @@ -332,7 +332,7 @@ void TryRunTics (void) bool doWait = cl_capfps || pauseext || (r_NoInterpolate && !M_IsAnimated()); // get real tics - if (doWait) + if (doWait && gamestate != GS_INTERMISSION) // GS_INTERMISSION needs uncapped frame rate. { entertic = I_WaitForTic (oldentertics); }