diff options
| author | JosJuice <josjuice@gmail.com> | 2020-06-28 22:12:19 +0200 |
|---|---|---|
| committer | JosJuice <josjuice@gmail.com> | 2020-06-28 22:12:35 +0200 |
| commit | e044db6da64e03d94294afeaf3c41a234c359460 (patch) | |
| tree | 1fbdf9f8b26d17aab744c62bf722092604b7c7fc /Source/Android/app/src/main/java | |
| parent | 961f93701065f099ba68fb610f699f89b804a2b4 (diff) | |
Android: Fix button ID typo
Probably didn't actually break anything in practice due to
how the code for sticks works, but still.
Diffstat (limited to 'Source/Android/app/src/main/java')
| -rw-r--r-- | Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/NativeLibrary.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/NativeLibrary.java b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/NativeLibrary.java index 3751385be8..fef329d451 100644 --- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/NativeLibrary.java +++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/NativeLibrary.java @@ -138,7 +138,7 @@ public final class NativeLibrary public static final int CLASSIC_STICK_LEFT_RIGHT = 317; public static final int CLASSIC_STICK_RIGHT = 318; public static final int CLASSIC_STICK_RIGHT_UP = 319; - public static final int CLASSIC_STICK_RIGHT_DOWN = 100; + public static final int CLASSIC_STICK_RIGHT_DOWN = 320; public static final int CLASSIC_STICK_RIGHT_LEFT = 321; public static final int CLASSIC_STICK_RIGHT_RIGHT = 322; public static final int CLASSIC_TRIGGER_L = 323; |
