woops
This commit is contained in:
parent
72808f01bb
commit
13423ac461
|
@ -0,0 +1,31 @@
|
|||
using BizHawk.Emulation.Common;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace BizHawk.Emulation.Cores.Nintendo.GBA
|
||||
{
|
||||
public static class GBA
|
||||
{
|
||||
public static readonly ControllerDefinition GBAController = new ControllerDefinition
|
||||
{
|
||||
Name = "GBA Controller",
|
||||
BoolButtons =
|
||||
{
|
||||
"Up", "Down", "Left", "Right", "Start", "Select", "B", "A", "L", "R", "Power"
|
||||
},
|
||||
FloatControls =
|
||||
{
|
||||
"Tilt X", "Tilt Y", "Tilt Z", "Light Sensor"
|
||||
},
|
||||
FloatRanges =
|
||||
{
|
||||
new[] { -32767f, 0f, 32767f },
|
||||
new[] { -32767f, 0f, 32767f },
|
||||
new[] { -32767f, 0f, 32767f },
|
||||
new[] { 0f, 100f, 200f },
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue