From 71d667cdc9a636fb817ce634ff02c99b126c27e4 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Fri, 25 Sep 2020 13:33:44 +1000 Subject: [PATCH] - `ApplyGlobalInput()`: Fix const issue. --- source/core/inputstate.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/core/inputstate.cpp b/source/core/inputstate.cpp index 219facf1d..0c862361e 100644 --- a/source/core/inputstate.cpp +++ b/source/core/inputstate.cpp @@ -335,7 +335,7 @@ CCMD(pause) -void ApplyGlobalInput(InputPacket& input, ControlInfo* const hidInput) +void ApplyGlobalInput(InputPacket& input, ControlInfo* hidInput) { if (WeaponToSend != 0) input.setNewWeapon(WeaponToSend); WeaponToSend = 0;