mirror of https://github.com/mgba-emu/mgba.git
Wii: Uncomment code that accidentally got committed commented-out
This commit is contained in:
parent
c732ea6a71
commit
2254fc68c2
|
@ -611,7 +611,7 @@ uint16_t _pollGameInput(struct GBAGUIRunner* runner) {
|
||||||
if (angles != GBA_KEY_NONE) {
|
if (angles != GBA_KEY_NONE) {
|
||||||
keys |= 1 << angles;
|
keys |= 1 << angles;
|
||||||
}
|
}
|
||||||
/*if (ext == WPAD_EXP_CLASSIC) {
|
if (ext == WPAD_EXP_CLASSIC) {
|
||||||
keys |= GBAInputMapKeyBits(&runner->context.inputMap, CLASSIC_INPUT, wiiPad, 0);
|
keys |= GBAInputMapKeyBits(&runner->context.inputMap, CLASSIC_INPUT, wiiPad, 0);
|
||||||
angles = GBAInputMapAxis(&runner->context.inputMap, CLASSIC_INPUT, 0, WPAD_StickX(0, 0));
|
angles = GBAInputMapAxis(&runner->context.inputMap, CLASSIC_INPUT, 0, WPAD_StickX(0, 0));
|
||||||
if (angles != GBA_KEY_NONE) {
|
if (angles != GBA_KEY_NONE) {
|
||||||
|
@ -621,7 +621,7 @@ uint16_t _pollGameInput(struct GBAGUIRunner* runner) {
|
||||||
if (angles != GBA_KEY_NONE) {
|
if (angles != GBA_KEY_NONE) {
|
||||||
keys |= 1 << angles;
|
keys |= 1 << angles;
|
||||||
}
|
}
|
||||||
}*/
|
}
|
||||||
|
|
||||||
return keys;
|
return keys;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue