From eaad403cc5b5fd6abff327a999f5d3288a7e1582 Mon Sep 17 00:00:00 2001 From: Ian C Date: Sat, 9 Jun 2012 22:29:18 +0000 Subject: Updated digital joystick state to match a Kempston stick, for the hell of it. --- src/Noddybox.Emulation.Xna.Input/Joystick/JoystickState.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/Noddybox.Emulation.Xna.Input/Joystick/JoystickState.cs') 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, -- cgit v1.2.3