summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2012-06-09 22:29:18 +0000
committerIan C <ianc@noddybox.co.uk>2012-06-09 22:29:18 +0000
commiteaad403cc5b5fd6abff327a999f5d3288a7e1582 (patch)
treee4f075d17c138e53e78faea7d15f613305fab95f
parent6930d664fa6b08593e2cee68c5925bed665aec6c (diff)
Updated digital joystick state to match a Kempston stick, for the hell of it.HEADmaster
-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,