From 024d188c45aff5bc839134ce11b89e93d31e3793 Mon Sep 17 00:00:00 2001 From: Thomas Guillemard Date: Tue, 23 Oct 2018 09:59:26 +0200 Subject: [PATCH] Fix KEY_RSTICK_UP --- Ryujinx.HLE/Hid/Hid.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ryujinx.HLE/Hid/Hid.cs b/Ryujinx.HLE/Hid/Hid.cs index e634761d42..66b38db595 100644 --- a/Ryujinx.HLE/Hid/Hid.cs +++ b/Ryujinx.HLE/Hid/Hid.cs @@ -135,7 +135,7 @@ namespace Ryujinx.HLE.Input Result |= HidControllerButtons.KEY_RSTICK_DOWN; } - if (LeftStick.DY > 0) + if (RightStick.DY > 0) { Result |= HidControllerButtons.KEY_RSTICK_UP; }