mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-09-07 11:58:12 +00:00
SDL_vitatouch.c: re-enable front touch on Vita
This commit is contained in:
@@ -123,7 +123,7 @@ void VITA_PollTouch(void)
|
|||||||
// Skip if finger was already previously down
|
// Skip if finger was already previously down
|
||||||
if (!finger_down) {
|
if (!finger_down) {
|
||||||
// Send an initial touch
|
// Send an initial touch
|
||||||
SDL_SendTouch((SDL_TouchID)port,
|
SDL_SendTouch((SDL_TouchID)(port + 1),
|
||||||
finger_id,
|
finger_id,
|
||||||
Vita_Window,
|
Vita_Window,
|
||||||
SDL_TRUE,
|
SDL_TRUE,
|
||||||
@@ -133,7 +133,7 @@ void VITA_PollTouch(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Always send the motion
|
// Always send the motion
|
||||||
SDL_SendTouchMotion((SDL_TouchID)port,
|
SDL_SendTouchMotion((SDL_TouchID)(port + 1),
|
||||||
finger_id,
|
finger_id,
|
||||||
Vita_Window,
|
Vita_Window,
|
||||||
x,
|
x,
|
||||||
@@ -160,7 +160,7 @@ void VITA_PollTouch(void)
|
|||||||
VITA_ConvertTouchXYToSDLXY(&x, &y, touch_old[port].report[i].x, touch_old[port].report[i].y, port);
|
VITA_ConvertTouchXYToSDLXY(&x, &y, touch_old[port].report[i].x, touch_old[port].report[i].y, port);
|
||||||
finger_id = (SDL_FingerID)touch_old[port].report[i].id;
|
finger_id = (SDL_FingerID)touch_old[port].report[i].id;
|
||||||
// Finger released from screen
|
// Finger released from screen
|
||||||
SDL_SendTouch((SDL_TouchID)port,
|
SDL_SendTouch((SDL_TouchID)(port + 1),
|
||||||
finger_id,
|
finger_id,
|
||||||
Vita_Window,
|
Vita_Window,
|
||||||
SDL_FALSE,
|
SDL_FALSE,
|
||||||
|
Reference in New Issue
Block a user