From ec659a418ab1d7e23aa6a34cd0f1293288fe795e Mon Sep 17 00:00:00 2001 From: goyuken Date: Tue, 16 Sep 2014 03:04:11 +0000 Subject: [PATCH] compensate for australia --- BizHawk.Emulation.Cores/Consoles/Atari/lynx/LibLynx.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/lynx/LibLynx.cs b/BizHawk.Emulation.Cores/Consoles/Atari/lynx/LibLynx.cs index e4a99ba946..52b7ae2db9 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/lynx/LibLynx.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/lynx/LibLynx.cs @@ -27,8 +27,8 @@ namespace BizHawk.Emulation.Cores.Atari.Lynx [Flags] public enum Buttons : ushort { - Up = 0x0080, - Down = 0x0040, + Up = 0x0040, + Down = 0x0080, Left = 0x0010, Right = 0x0020, Option_1 = 0x008,