PSX - user friendly display names for controller types

This commit is contained in:
adelikat 2015-02-01 14:08:43 +00:00
parent 4eda12a8b0
commit 271193251c
1 changed files with 10 additions and 1 deletions

View File

@ -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