2018-06-10 21:46:42 -03:00
|
|
|
namespace Ryujinx.HLE.Input
|
2018-03-02 22:49:17 -03:00
|
|
|
{
|
|
|
|
public enum HidControllerId
|
|
|
|
{
|
2018-12-06 05:16:24 -06:00
|
|
|
ControllerPlayer1 = 0,
|
|
|
|
ControllerPlayer2 = 1,
|
|
|
|
ControllerPlayer3 = 2,
|
|
|
|
ControllerPlayer4 = 3,
|
|
|
|
ControllerPlayer5 = 4,
|
|
|
|
ControllerPlayer6 = 5,
|
|
|
|
ControllerPlayer7 = 6,
|
|
|
|
ControllerPlayer8 = 7,
|
|
|
|
ControllerHandheld = 8,
|
|
|
|
ControllerUnknown = 9
|
2018-03-02 22:49:17 -03:00
|
|
|
}
|
|
|
|
}
|