mirror of
https://github.com/Ryujinx/SDL.git
synced 2024-12-23 00:05:35 +00:00
Fix GetGlobalMouseState when xi2 is not available at runtime
(cherry picked from commit 0123d6311d5c0059d617324426ef7eef8d577d9b)
This commit is contained in:
parent
da6bce4f76
commit
7d55ccb8b0
|
@ -416,6 +416,9 @@ static Uint32 X11_GetGlobalMouseState(int *x, int *y)
|
|||
|
||||
#if !SDL_VIDEO_DRIVER_X11_XINPUT2
|
||||
videodata->global_mouse_changed = SDL_TRUE;
|
||||
#else
|
||||
if (!SDL_X11_HAVE_XINPUT2)
|
||||
videodata->global_mouse_changed = SDL_TRUE;
|
||||
#endif
|
||||
|
||||
/* check if we have this cached since XInput last saw the mouse move. */
|
||||
|
|
Loading…
Reference in a new issue