bizswan: fix button orders
This commit is contained in:
parent
d3a5733886
commit
3dd6da2896
|
@ -87,13 +87,13 @@ namespace BizHawk.Emulation.Cores.WonderSwan
|
|||
public enum Buttons : ushort
|
||||
{
|
||||
UpX = 0x0001,
|
||||
DownX = 0x0002,
|
||||
LeftX = 0x0004,
|
||||
RightX = 0x0008,
|
||||
RightX = 0x0002,
|
||||
DownX = 0x0004,
|
||||
LeftX = 0x0008,
|
||||
UpY = 0x0010,
|
||||
DownY = 0x0020,
|
||||
LeftY = 0x0040,
|
||||
RightY = 0x0080,
|
||||
RightY = 0x0020,
|
||||
DownY = 0x0040,
|
||||
LeftY = 0x0080,
|
||||
Start = 0x0100,
|
||||
B = 0x0200,
|
||||
A = 0x0400,
|
||||
|
|
Loading…
Reference in New Issue