From db419fd6180379231d9aa213b768b5d0ed66163a Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Thu, 15 Oct 2020 20:11:22 +1100 Subject: [PATCH] - Duke (RRRA): Fix vehicle avel while `cl_syncinput 1`. * Fully fixes #128. --- source/games/duke/src/input.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/games/duke/src/input.cpp b/source/games/duke/src/input.cpp index 6c470c8c0..1aa64a3b7 100644 --- a/source/games/duke/src/input.cpp +++ b/source/games/duke/src/input.cpp @@ -804,6 +804,7 @@ static void processVehicleInput(player_struct *p, ControlInfo* const hidInput, I input.fvel = p->MotoSpeed; input.avel = turnvel * (45. / 256.); + loc.avel = clamp(loc.avel + input.avel, -MAXANGVEL, MAXANGVEL); } //--------------------------------------------------------------------------- @@ -834,7 +835,7 @@ static void FinalizeInput(int playerNum, InputPacket& input, bool vehicle) loc.svel = clamp(loc.svel + input.svel, -MAXSVEL, MAXSVEL); } else - loc.fvel = clamp(input.fvel, -(MAXVELMOTO / 8), MAXVELMOTO); + loc.fvel = clamp(input.fvel, -(MAXVELMOTO >> 3), MAXVELMOTO); } else {