Fix swapped L/R button bits

This commit is contained in:
Jack Andersen 2018-02-02 14:33:49 -10:00
parent 72c9809655
commit 25dfeb64aa
1 changed files with 2 additions and 2 deletions

View File

@ -20,8 +20,8 @@ enum class EDolphinControllerButtons
{
Start = 1<<0,
Z = 1<<1,
L = 1<<2,
R = 1<<3,
R = 1<<2,
L = 1<<3,
A = 1<<8,
B = 1<<9,
X = 1<<10,