diff options
| author | zackhow <zackhow@gmail.com> | 2018-08-03 19:46:26 -0400 |
|---|---|---|
| committer | zackhow <zackhow@gmail.com> | 2018-08-03 19:46:26 -0400 |
| commit | ec5e46fa7a3e9c2da68777d718155ff768a4b238 (patch) | |
| tree | 8823c05de18a46b6ce8224b9b34b4970c259955e /Source/Android/app/src/main/java | |
| parent | be02a8e70b87a5f144949cb831c66a03a73ec58a (diff) | |
Android: Return 0 on fail on WiimoteReal IOWrite and update WiimoteNew defaults
Some of the write checks do an & on the result, returning 0 will allow these fails to be caught.
Updated the default WiimoteNew to set wiimotes 2-4 to be disabled on new install. No reason to have these
enabled unless there is actually a 2+ players
Diffstat (limited to 'Source/Android/app/src/main/java')
| -rw-r--r-- | Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/utils/Java_WiimoteAdapter.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/utils/Java_WiimoteAdapter.java b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/utils/Java_WiimoteAdapter.java index a38f7ecd4b..18fe41b584 100644 --- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/utils/Java_WiimoteAdapter.java +++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/utils/Java_WiimoteAdapter.java @@ -107,7 +107,7 @@ public class Java_WiimoteAdapter 1000); if (write < 0) - return -1; + return 0; return write + 1; } |
