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