Fixed bug #5322 - register virtual input devices as SDL_Touch device, fix compilation
parent
3a9bbf604e
commit
5b41844c75
|
@ -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();
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue