mirror of
https://github.com/shadps4-emu/ext-SDL.git
synced 2024-12-03 16:21:15 +00:00
SDL_HINT_MOUSE_TOUCH_EVENTS: move tracking appart in case of 'window' is null
This commit is contained in:
parent
a1a9fd50c6
commit
eb7affeeb8
@ -486,14 +486,14 @@ SDL_PrivateSendMouseButton(SDL_Window * window, SDL_MouseID mouseID, Uint8 state
|
||||
/* SDL_HINT_MOUSE_TOUCH_EVENTS: controlling whether mouse events should generate synthetic touch events */
|
||||
if (mouse->mouse_touch_events) {
|
||||
if (mouseID != SDL_TOUCH_MOUSEID && button == SDL_BUTTON_LEFT) {
|
||||
if (state == SDL_PRESSED) {
|
||||
track_mouse_down = SDL_TRUE;
|
||||
} else {
|
||||
track_mouse_down = SDL_FALSE;
|
||||
}
|
||||
if (window) {
|
||||
float fx = (float)mouse->x / (float)window->w;
|
||||
float fy = (float)mouse->y / (float)window->h;
|
||||
if (state == SDL_PRESSED) {
|
||||
track_mouse_down = SDL_TRUE;
|
||||
} else {
|
||||
track_mouse_down = SDL_FALSE;
|
||||
}
|
||||
SDL_SendTouch(SDL_MOUSE_TOUCHID, 0, track_mouse_down, fx, fy, 1.0f);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user