1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-11-09 21:51:45 +00:00

Do same in ams_mitm

This commit is contained in:
leo60228 2019-05-12 09:04:58 -04:00
parent defee07625
commit 56d7473451

View file

@ -460,7 +460,11 @@ Result Utils::GetKeysHeld(u64 *keys) {
} }
hidScanInput(); hidScanInput();
*keys = hidKeysHeld(CONTROLLER_P1_AUTO); *keys = 0;
for (int controller = 0; controller < 10; controller++) {
*keys |= hidKeysHeld((HidControllerID) controller);
}
return ResultSuccess; return ResultSuccess;
} }