psphawk: controller definition

This commit is contained in:
goyuken 2013-06-25 23:44:17 +00:00
parent b8eec16d8c
commit a18ed625ca
1 changed files with 8 additions and 1 deletions

View File

@ -11,7 +11,14 @@ namespace BizHawk.Emulation.Consoles.Sony.PSP
public static readonly ControllerDefinition PSPController = new ControllerDefinition
{
Name = "PSP Controller",
BoolButtons = { "TO", "BE", "CHANGED" }
BoolButtons =
{
"Up", "Down", "Left", "Right", "Select", "Start", "L", "R", "Square", "Triangle", "Circle", "Cross", "Power"
},
FloatControls =
{
"Stick X", "Stick Y"
}
};
public IVideoProvider VideoProvider { get { return this; } }