summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Native/EmuKeyboardDesigner/EmuKeyboardDesigner.suobin51712 -> 51712 bytes
-rw-r--r--src/Noddybox.Emulation.Xna.Input/Joystick/JoystickState.cs8
2 files changed, 4 insertions, 4 deletions
diff --git a/Native/EmuKeyboardDesigner/EmuKeyboardDesigner.suo b/Native/EmuKeyboardDesigner/EmuKeyboardDesigner.suo
index fa80bcb..608f30e 100644
--- a/Native/EmuKeyboardDesigner/EmuKeyboardDesigner.suo
+++ b/Native/EmuKeyboardDesigner/EmuKeyboardDesigner.suo
Binary files differ
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,