PADRead: Right shift channel bits... (yeah that's logical, i'm just an idiot)

This commit is contained in:
Phillip Stephens 2022-03-20 00:50:39 -07:00
parent 30a5691748
commit 7e1b1ef248
Signed by: Antidote
GPG Key ID: F8BEE4C83DACA60D
1 changed files with 1 additions and 2 deletions

View File

@ -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;