From 99fdbfb6cb62bd02d91f4b2d95339cbd918c71fa Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Thu, 7 May 2020 03:36:39 +1000 Subject: [PATCH] - fix interpolation stutters when opening console for SW. --- source/sw/src/game.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/sw/src/game.cpp b/source/sw/src/game.cpp index 4f74082c2..a6c056d89 100644 --- a/source/sw/src/game.cpp +++ b/source/sw/src/game.cpp @@ -2526,9 +2526,9 @@ void RunLevel(void) return; // Stop the game loop if a savegame was loaded from the menu. } - if (M_Active()) + if (M_Active() || GUICapture || GamePaused) { - ototalclock = (int)totalclock; + totalclock = ototalclock + (120 / synctics); } else {