From 676f254be1ce08ca2da951a9520017f8a130fba3 Mon Sep 17 00:00:00 2001 From: fincs Date: Tue, 1 Dec 2020 16:37:01 +0100 Subject: [PATCH] pad: Fix logic typo --- nx/source/runtime/pad.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nx/source/runtime/pad.c b/nx/source/runtime/pad.c index 72072243..1b4334b0 100644 --- a/nx/source/runtime/pad.c +++ b/nx/source/runtime/pad.c @@ -3,7 +3,7 @@ #include "runtime/pad.h" NX_CONSTEXPR bool _isStickMoving(const HidAnalogStickState* stick) { - return stick->x != 0 && stick->y != 0; + return stick->x != 0 || stick->y != 0; } void padConfigureInput(u32 max_players, u32 style_set) {