From a8bb6ba515e9f44bc73bb2e7b83ea0a1a58bd589 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Mon, 31 Aug 2020 19:23:05 +0200 Subject: [PATCH] - base the turbo turn timer on the actual level tic rate This has a threshold that could lead to different behavior, depending on whether synchronized or unsynchronized input is used, it also used an undefined state of gameclock for its calculations. By basing this on the levelclock consistency is ensured. --- source/games/duke/src/input.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/games/duke/src/input.cpp b/source/games/duke/src/input.cpp index 15a9bc63c..84a227418 100644 --- a/source/games/duke/src/input.cpp +++ b/source/games/duke/src/input.cpp @@ -624,8 +624,8 @@ static void checkCrouchToggle(player_struct* p) int getticssincelastupdate() { - int tics = lastcontroltime == 0 || gameclock < lastcontroltime ? 0 : gameclock - lastcontroltime; - lastcontroltime = gameclock; + int tics = lastcontroltime == 0 || ud.levelclock < lastcontroltime ? 0 : ud.levelclock - lastcontroltime; + lastcontroltime = ud.levelclock; return tics; }