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
This commit is contained in:
zackhow 2018-08-03 19:46:26 -04:00
parent be02a8e70b
commit ec5e46fa7a
2 changed files with 4 additions and 4 deletions

View File

@ -267,7 +267,7 @@ Turntable/Stick/Radius = 100,000000
Turntable/Effect/Dial = `Axis 621`
Turntable/Crossfade/Left = `Axis 623`
Turntable/Crossfade/Right = `Axis 624`
Source = 1
Source = 0
[Wiimote3]
Device = Android/6/Touchscreen
Buttons/A = `Button 100`
@ -402,7 +402,7 @@ Turntable/Stick/Radius = 100,000000
Turntable/Effect/Dial = `Axis 621`
Turntable/Crossfade/Left = `Axis 623`
Turntable/Crossfade/Right = `Axis 624`
Source = 1
Source = 0
[Wiimote4]
Device = Android/7/Touchscreen
Buttons/A = `Button 100`
@ -537,4 +537,4 @@ Turntable/Stick/Radius = 100,000000
Turntable/Effect/Dial = `Axis 621`
Turntable/Crossfade/Left = `Axis 623`
Turntable/Crossfade/Right = `Axis 624`
Source = 1
Source = 0

View File

@ -107,7 +107,7 @@ public class Java_WiimoteAdapter
1000);
if (write < 0)
return -1;
return 0;
return write + 1;
}