mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-24 11:16:51 +00:00
SDL: fix Axis 0 (left stick x) always returns 0
This commit is contained in:
parent
fb9b8c1d73
commit
5464ea3a08
@ -0,0 +1,13 @@
|
||||
diff --git a/src/joystick/linux/SDL_sysjoystick.c b/src/joystick/linux/SDL_sysjoystick.c
|
||||
index ee43974..80e46e4 100644
|
||||
--- a/src/joystick/linux/SDL_sysjoystick.c
|
||||
+++ b/src/joystick/linux/SDL_sysjoystick.c
|
||||
@@ -702,7 +702,7 @@ static SDL_bool EV_ConfigJoystick(SDL_Joystick *joystick, int fd)
|
||||
++joystick->nbuttons;
|
||||
}
|
||||
}
|
||||
- for ( i=0; i<ABS_MISC; ++i ) {
|
||||
+ for ( i=0; i<ABS_MAX; ++i ) {
|
||||
/* Skip hats */
|
||||
if ( i == ABS_HAT0X ) {
|
||||
i = ABS_HAT3Y;
|
Loading…
x
Reference in New Issue
Block a user