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