diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Noddybox.Emulation.Xna.Input/Joystick/JoystickState.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Noddybox.Emulation.Xna.Input/Joystick/JoystickState.cs b/src/Noddybox.Emulation.Xna.Input/Joystick/JoystickState.cs index 5c23313..b99d4af 100644 --- a/src/Noddybox.Emulation.Xna.Input/Joystick/JoystickState.cs +++ b/src/Noddybox.Emulation.Xna.Input/Joystick/JoystickState.cs @@ -32,10 +32,10 @@ namespace Noddybox.Emulation.Xna.Input.Joystick public enum DigitalJoystickState
{
Centre = 0x00,
- Up = 0x01,
- Down = 0x02,
- Left = 0x04,
- Right = 0x08,
+ Up = 0x08,
+ Down = 0x04,
+ Left = 0x02,
+ Right = 0x01,
UpLeft = Up | Left,
UpRight = Up | Right,
DownLeft = Down | Left,
|