Does anyone know if there is a way to change which portion of the ring is lit on the Xbox controller? For instance, I want the first controller to be plugged in to represent player 2 (if player 1 opts to use keyboard/mouse input)

Thanks.

link|improve this question

75% accept rate
feedback

1 Answer

Use XInputRemap to remap the connected controllers to the users associated with those controllers. This is part of the XInput API. So if you have 2 players and want to swap their controller:

DWORD remap[XUSER_MAX_COUNT];
remap[0] = 1;
remap[1] = 0;
DWORD dwResult = XInputRemap(remap);

The SDK includes a sample the demonstrates this function.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.