expansion_t.type is always 0? March 08, 2014 03:22PM | Registered: 9 years ago Posts: 5 |
WPAD_ScanPads(); struct expansion_t ext; WPAD_Expansion(WPAD_CHAN_0, &ext); if (ext.type == WPAD_EXP_NONE) return 0; else if (ext.type == WPAD_EXP_NUNCHUK) return 1; else if (ext.type == WPAD_EXP_CLASSIC) return 2; return ext.type;It seems to always return 0, no matter what expansion I am using. What is wrong with it?
Re: expansion_t.type is always 0? March 08, 2014 07:38PM | Registered: 12 years ago Posts: 363 |
Re: expansion_t.type is always 0? March 09, 2014 06:55PM | Registered: 9 years ago Posts: 5 |