Skip to content

Commit

Permalink
flip dpad y axis for #212
Browse files Browse the repository at this point in the history
  • Loading branch information
Ironbell committed Jun 24, 2018
1 parent 9804a80 commit e12a136
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Controller/GamepadMappings/XboxEliteMapping.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ static input_map INPUT_MAP() {
{
{ GamepadInput::Axis_PovX_Negative, GamepadAxis::DPadLeft },
{ GamepadInput::Axis_PovX_Positive, GamepadAxis::DPadRight },
{ GamepadInput::Axis_PovY_Negative, GamepadAxis::DPadDown },
{ GamepadInput::Axis_PovY_Positive, GamepadAxis::DPadUp },
{ GamepadInput::Axis_PovY_Negative, GamepadAxis::DPadUp },
{ GamepadInput::Axis_PovY_Positive, GamepadAxis::DPadDown },
{ GamepadInput::Axis_X_Negative, GamepadAxis::LeftStickLeft },
{ GamepadInput::Axis_X_Positive, GamepadAxis::LeftStickRight },
{ GamepadInput::Axis_Y_Negative, GamepadAxis::LeftStickUp },
Expand Down

0 comments on commit e12a136

Please sign in to comment.