diff --git a/source/blood/src/controls.cpp b/source/blood/src/controls.cpp index b1259785c..ea619a0ee 100644 --- a/source/blood/src/controls.cpp +++ b/source/blood/src/controls.cpp @@ -300,9 +300,9 @@ void ctrlGetInput(void) if (gInput.strafe < keyMove && gInput.strafe > -keyMove) { - if (buttonMap.ButtonDown(gamefunc_Turn_Left)) + if (buttonMap.ButtonDown(gamefunc_Strafe_Left)) input.strafe += keyMove; - if (buttonMap.ButtonDown(gamefunc_Turn_Right)) + if (buttonMap.ButtonDown(gamefunc_Strafe_Right)) input.strafe -= keyMove; }