Commit 412ab7e1aabca47bcdcd6f323db5d18edc864d3c

Sylvain Becker 2019-10-18T14:23:37

Fixed bug 4829 - Sensor events incorrectly disabled

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/sensor/SDL_sensor.c b/src/sensor/SDL_sensor.c
index 35bac95..9caaf6f 100644
--- a/src/sensor/SDL_sensor.c
+++ b/src/sensor/SDL_sensor.c
@@ -486,7 +486,7 @@ SDL_PrivateSensorUpdate(SDL_Sensor *sensor, float *data, int num_values)
     /* Post the event, if desired */
     posted = 0;
 #if !SDL_EVENTS_DISABLED
-    if (SDL_GetEventState(SDL_JOYAXISMOTION) == SDL_ENABLE) {
+    if (SDL_GetEventState(SDL_SENSORUPDATE) == SDL_ENABLE) {
         SDL_Event event;
         event.type = SDL_SENSORUPDATE;
         event.sensor.which = sensor->instance_id;