diff options
author | Ian C <ianc@noddybox.co.uk> | 2012-06-09 22:29:18 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2012-06-09 22:29:18 +0000 |
commit | eaad403cc5b5fd6abff327a999f5d3288a7e1582 (patch) | |
tree | e4f075d17c138e53e78faea7d15f613305fab95f /src/Noddybox.Emulation.Xna.Input | |
parent | 6930d664fa6b08593e2cee68c5925bed665aec6c (diff) |
Diffstat (limited to 'src/Noddybox.Emulation.Xna.Input')
-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,
|