2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-02 06:14:22 +00:00

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

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;