mirror of https://github.com/AxioDL/boo.git
Fix swapped L/R button bits
This commit is contained in:
parent
72c9809655
commit
25dfeb64aa
|
@ -20,8 +20,8 @@ enum class EDolphinControllerButtons
|
||||||
{
|
{
|
||||||
Start = 1<<0,
|
Start = 1<<0,
|
||||||
Z = 1<<1,
|
Z = 1<<1,
|
||||||
L = 1<<2,
|
R = 1<<2,
|
||||||
R = 1<<3,
|
L = 1<<3,
|
||||||
A = 1<<8,
|
A = 1<<8,
|
||||||
B = 1<<9,
|
B = 1<<9,
|
||||||
X = 1<<10,
|
X = 1<<10,
|
||||||
|
|
Loading…
Reference in New Issue