From 0ab81904c22e5976c6f7db0a4a9b7be45dc65064 Mon Sep 17 00:00:00 2001 From: Evan Ramos Date: Thu, 21 May 2020 03:54:42 -0500 Subject: [PATCH] SW: Allow Strafe Left and Right to turn vehicles --- 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 58c6fcad1..863f88daf 100644 --- a/source/sw/src/game.cpp +++ b/source/sw/src/game.cpp @@ -3220,7 +3220,7 @@ getinput(SW_PACKET *loc, SWBOOL tied) } else { - if (buttonMap.ButtonDown(gamefunc_Turn_Left)) + if (buttonMap.ButtonDown(gamefunc_Turn_Left) || (buttonMap.ButtonDown(gamefunc_Strafe_Left) && pp->sop)) { turnheldtime += synctics; if (PedanticMode) @@ -3233,7 +3233,7 @@ getinput(SW_PACKET *loc, SWBOOL tied) else q16angvel = fix16_ssub(q16angvel, fix16_from_float(scaleAdjustmentToInterval((turnheldtime >= TURBOTURNTIME) ? turnamount : PREAMBLETURN))); } - else if (buttonMap.ButtonDown(gamefunc_Turn_Right)) + else if (buttonMap.ButtonDown(gamefunc_Turn_Right) || (buttonMap.ButtonDown(gamefunc_Strafe_Right) && pp->sop)) { turnheldtime += synctics; if (PedanticMode)