diff --git a/include/SDL_mouse.h b/include/SDL_mouse.h index 1650794f5..af2774ab6 100644 --- a/include/SDL_mouse.h +++ b/include/SDL_mouse.h @@ -74,7 +74,7 @@ extern DECLSPEC SDL_Window * SDLCALL SDL_GetMouseFocus(void); * mouse cursor position relative to the focus window for the currently * selected mouse. You can pass NULL for either x or y. */ -extern DECLSPEC Uint8 SDLCALL SDL_GetMouseState(int *x, int *y); +extern DECLSPEC Uint32 SDLCALL SDL_GetMouseState(int *x, int *y); /** * \brief Retrieve the relative state of the mouse. @@ -83,7 +83,7 @@ extern DECLSPEC Uint8 SDLCALL SDL_GetMouseState(int *x, int *y); * be tested using the SDL_BUTTON(X) macros, and x and y are set to the * mouse deltas since the last call to SDL_GetRelativeMouseState(). */ -extern DECLSPEC Uint8 SDLCALL SDL_GetRelativeMouseState(int *x, int *y); +extern DECLSPEC Uint32 SDLCALL SDL_GetRelativeMouseState(int *x, int *y); /** * \brief Moves the mouse to the given position within the window. diff --git a/src/events/SDL_mouse.c b/src/events/SDL_mouse.c index 9444b287a..2d20a448c 100644 --- a/src/events/SDL_mouse.c +++ b/src/events/SDL_mouse.c @@ -118,7 +118,7 @@ SDL_SetMouseFocus(SDL_Window * window) /* Check to see if we need to synthesize focus events */ static SDL_bool -SDL_UpdateMouseFocus(SDL_Window * window, int x, int y, Uint8 buttonstate) +SDL_UpdateMouseFocus(SDL_Window * window, int x, int y, Uint32 buttonstate) { SDL_Mouse *mouse = SDL_GetMouse(); int w, h; @@ -264,7 +264,7 @@ SDL_SendMouseButton(SDL_Window * window, Uint8 state, Uint8 button) SDL_Mouse *mouse = SDL_GetMouse(); int posted; Uint32 type; - Uint8 buttonstate = mouse->buttonstate; + Uint32 buttonstate = mouse->buttonstate; /* Figure out which event to perform */ switch (state) { @@ -345,7 +345,7 @@ SDL_MouseQuit(void) { } -Uint8 +Uint32 SDL_GetMouseState(int *x, int *y) { SDL_Mouse *mouse = SDL_GetMouse(); @@ -359,7 +359,7 @@ SDL_GetMouseState(int *x, int *y) return mouse->buttonstate; } -Uint8 +Uint32 SDL_GetRelativeMouseState(int *x, int *y) { SDL_Mouse *mouse = SDL_GetMouse(); diff --git a/src/events/SDL_mouse_c.h b/src/events/SDL_mouse_c.h index d571ddabd..cf99a86ac 100644 --- a/src/events/SDL_mouse_c.h +++ b/src/events/SDL_mouse_c.h @@ -58,7 +58,7 @@ typedef struct int xdelta; int ydelta; int last_x, last_y; /* the last reported x and y coordinates */ - Uint8 buttonstate; + Uint32 buttonstate; SDL_bool relative_mode; /* the x and y coordinates when relative mode was activated */ int original_x, original_y;