mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-10-26 12:27:44 +00:00
Removed unnecessary cast
This commit is contained in:
@@ -714,7 +714,7 @@ SDL_Keymod SDL_GetModState(void)
|
||||
{
|
||||
SDL_Keyboard *keyboard = &SDL_keyboard;
|
||||
|
||||
return (SDL_Keymod)keyboard->modstate;
|
||||
return keyboard->modstate;
|
||||
}
|
||||
|
||||
void SDL_SetModState(SDL_Keymod modstate)
|
||||
|
||||
Reference in New Issue
Block a user