From 7e1b1ef248f4a4d48bf822ab1276419336febebf Mon Sep 17 00:00:00 2001 From: Phillip Stephens Date: Sun, 20 Mar 2022 00:50:39 -0700 Subject: [PATCH] PADRead: Right shift channel bits... (yeah that's logical, i'm just an idiot) --- aurora/lib/input.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/aurora/lib/input.cpp b/aurora/lib/input.cpp index b834ac6a0..10ce9d0bf 100644 --- a/aurora/lib/input.cpp +++ b/aurora/lib/input.cpp @@ -403,8 +403,7 @@ u32 PADRead(PAD::Status* status) { if (controller.m_hasRumble) { - // Nintendo... why are these bits backwards? >.> - rumbleSupport |= PAD::CHAN3_BIT << (3 - i); + rumbleSupport |= PAD::CHAN0_BIT >> i; } } return rumbleSupport;