Removed unnecessary cast
This commit is contained in:
parent
7258b36e30
commit
017a1039e2
1 changed files with 1 additions and 1 deletions
|
@ -714,7 +714,7 @@ SDL_Keymod SDL_GetModState(void)
|
||||||
{
|
{
|
||||||
SDL_Keyboard *keyboard = &SDL_keyboard;
|
SDL_Keyboard *keyboard = &SDL_keyboard;
|
||||||
|
|
||||||
return (SDL_Keymod)keyboard->modstate;
|
return keyboard->modstate;
|
||||||
}
|
}
|
||||||
|
|
||||||
void SDL_SetModState(SDL_Keymod modstate)
|
void SDL_SetModState(SDL_Keymod modstate)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue