diff --git a/Inputs/Joystick.hpp b/Inputs/Joystick.hpp index ca0c39085..bb25f5e67 100644 --- a/Inputs/Joystick.hpp +++ b/Inputs/Joystick.hpp @@ -166,7 +166,6 @@ class ConcreteJoystick: public Joystick { // Otherwise this is logically to an analogue axis; for now just use some // convenient hard-coded values. TODO: make these a function of time. using Type = Joystick::Input::Type; - using Precision = Joystick::Input::Precision; switch(input.type) { default: did_set_input(input, is_active ? 1.0f : 0.0f); break; case Type::Left: did_set_input(Input(Type::Horizontal, input.info.control.index), is_active ? 0.25f : 0.5f); break; @@ -185,7 +184,6 @@ class ConcreteJoystick: public Joystick { // Otherwise apply a threshold test to convert to digital, with remapping from axes to digital inputs. using Type = Joystick::Input::Type; - using Precision = Joystick::Input::Precision; switch(input.type) { default: did_set_input(input, value > 0.5f); break; case Type::Horizontal: