Fix KEY_RSTICK_UP

This commit is contained in:
Thomas Guillemard 2018-10-23 09:59:26 +02:00 committed by GitHub
commit 024d188c45
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -135,7 +135,7 @@ namespace Ryujinx.HLE.Input
Result |= HidControllerButtons.KEY_RSTICK_DOWN; Result |= HidControllerButtons.KEY_RSTICK_DOWN;
} }
if (LeftStick.DY > 0) if (RightStick.DY > 0)
{ {
Result |= HidControllerButtons.KEY_RSTICK_UP; Result |= HidControllerButtons.KEY_RSTICK_UP;
} }