mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-10 06:07:51 +08:00
14 lines
731 B
Diff
14 lines
731 B
Diff
diff --git a/src/sensor/android/SDL_androidsensor.c b/src/sensor/android/SDL_androidsensor.c
|
|
index 3f57253cd..c06faf2ee 100644
|
|
--- a/src/sensor/android/SDL_androidsensor.c
|
|
+++ b/src/sensor/android/SDL_androidsensor.c
|
|
@@ -161,7 +161,7 @@ static void SDL_ANDROID_SensorUpdate(SDL_Sensor *sensor)
|
|
ASensorEvent event;
|
|
struct android_poll_source *source;
|
|
|
|
- if (ALooper_pollAll(0, NULL, &events, (void **)&source) == LOOPER_ID_USER) {
|
|
+ if (ALooper_pollOnce(0, NULL, &events, (void **)&source) == LOOPER_ID_USER) {
|
|
SDL_zero(event);
|
|
while (ASensorEventQueue_getEvents(sensor->hwdata->eventqueue, &event, 1) > 0) {
|
|
SDL_PrivateSensorUpdate(sensor, 0, event.data, SDL_arraysize(event.data));
|