Wii: Uncomment code that accidentally got committed commented-out

This commit is contained in:
Jeffrey Pfau 2016-01-07 23:51:34 -08:00
parent c732ea6a71
commit 2254fc68c2
1 changed files with 2 additions and 2 deletions

View File

@ -611,7 +611,7 @@ uint16_t _pollGameInput(struct GBAGUIRunner* runner) {
if (angles != GBA_KEY_NONE) {
keys |= 1 << angles;
}
/*if (ext == WPAD_EXP_CLASSIC) {
if (ext == WPAD_EXP_CLASSIC) {
keys |= GBAInputMapKeyBits(&runner->context.inputMap, CLASSIC_INPUT, wiiPad, 0);
angles = GBAInputMapAxis(&runner->context.inputMap, CLASSIC_INPUT, 0, WPAD_StickX(0, 0));
if (angles != GBA_KEY_NONE) {
@ -621,7 +621,7 @@ uint16_t _pollGameInput(struct GBAGUIRunner* runner) {
if (angles != GBA_KEY_NONE) {
keys |= 1 << angles;
}
}*/
}
return keys;
}