Commit 5b41844c75a93f0091dba0e64df3e6d5f9829f7d

Sylvain 2022-02-09T09:50:41

Fixed bug #5322 - register virtual input devices as SDL_Touch device, fix compilation

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/android-project/app/src/main/java/org/libsdl/app/SDLActivity.java b/android-project/app/src/main/java/org/libsdl/app/SDLActivity.java
index 3ee892b..28f3c67 100644
--- a/android-project/app/src/main/java/org/libsdl/app/SDLActivity.java
+++ b/android-project/app/src/main/java/org/libsdl/app/SDLActivity.java
@@ -1306,7 +1306,7 @@ public class SDLActivity extends Activity implements View.OnSystemUiVisibilityCh
             InputDevice device = InputDevice.getDevice(id);
             /* Allow SOURCE_TOUCHSCREEN and also Virtual InputDevices because they can send TOUCHSCREEN events */
             if (device != null && ((device.getSources() & InputDevice.SOURCE_TOUCHSCREEN) == InputDevice.SOURCE_TOUCHSCREEN
-                    || device.isVirtual()) {
+                    || device.isVirtual())) {
 
                 int touchDevId = device.getId();
                 /*