فهرست منبع

Android: fix typo to register TOUCHSCREEN device (see #5322, #2718)

Sylvain 3 سال پیش
والد
کامیت
14bc3bf4ec
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      android-project/app/src/main/java/org/libsdl/app/SDLActivity.java

+ 1 - 1
android-project/app/src/main/java/org/libsdl/app/SDLActivity.java

@@ -1204,7 +1204,7 @@ public class SDLActivity extends Activity implements View.OnSystemUiVisibilityCh
 
         for (int id : ids) {
             InputDevice device = InputDevice.getDevice(id);
-            if (device != null && (device.getSources() & InputDevice.SOURCE_TOUCHSCREEN) != 0) {
+            if (device != null && (device.getSources() & InputDevice.SOURCE_TOUCHSCREEN) == InputDevice.SOURCE_TOUCHSCREEN) {
                 nativeAddTouch(device.getId(), device.getName());
             }
         }