Explorar el Código

vita: touch: Mark the back panel as an indirect absolute touch device

It's not a touchscreen, but an additional touch panel on the back of
the device.
Sebastian Krzyszkowiak hace 4 años
padre
commit
7b0092db6a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/video/vita/SDL_vitatouch.c

+ 1 - 1
src/video/vita/SDL_vitatouch.c

@@ -65,7 +65,7 @@ VITA_InitTouch(void)
 
 
     // Support passing both front and back touch devices in events
     // Support passing both front and back touch devices in events
     SDL_AddTouch((SDL_TouchID)0, SDL_TOUCH_DEVICE_DIRECT, "Front");
     SDL_AddTouch((SDL_TouchID)0, SDL_TOUCH_DEVICE_DIRECT, "Front");
-    SDL_AddTouch((SDL_TouchID)1, SDL_TOUCH_DEVICE_DIRECT,  "Back");
+    SDL_AddTouch((SDL_TouchID)1, SDL_TOUCH_DEVICE_INDIRECT_ABSOLUTE,  "Back");
 }
 }
 
 
 void 
 void