PSX - user friendly display names for controller types
This commit is contained in:
parent
4eda12a8b0
commit
271193251c
|
@ -948,7 +948,16 @@ namespace BizHawk.Emulation.Cores.Sony.PSX
|
|||
public bool IsConnected { get; set; }
|
||||
public ControllerType Type { get; set; }
|
||||
|
||||
public enum ControllerType { Gamepad, DualAnalog, DualShock }
|
||||
public enum ControllerType
|
||||
{
|
||||
Gamepad,
|
||||
|
||||
[Description("Dual Analog")]
|
||||
DualAnalog,
|
||||
|
||||
[Description("Dual Shock")]
|
||||
DualShock
|
||||
}
|
||||
}
|
||||
|
||||
public class Settings
|
||||
|
|
Loading…
Reference in New Issue