Commit 7b680a2ab7b334c8be34ea3be1631be093243b19

Sam Lantinga 2015-12-18T18:49:23

Fixed mapping third party XBox controllers that have the trigger axis all the way in until they are pulled and get updated values.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/test/controllermap.c b/test/controllermap.c
index eca82c3..da49cc1 100644
--- a/test/controllermap.c
+++ b/test/controllermap.c
@@ -232,7 +232,7 @@ WatchJoystick(SDL_Joystick * joystick)
             if (SDL_PollEvent(&event)) {
                 switch (event.type) {
                 case SDL_JOYAXISMOTION:
-                    if (event.jaxis.value > 20000 || event.jaxis.value < -20000) {
+                    if ((event.jaxis.value > 20000 || event.jaxis.value < -20000) && event.jaxis.value != -32768) {
                         for (_s = 0; _s < s; _s++) {
                             if (steps[_s].axis == event.jaxis.axis) {
                                 break;