mirror of
https://github.com/Ryujinx/SDL.git
synced 2025-01-08 22:25:37 +00:00
Fixed warning: no previous prototype for function 'SDL_GetGameControllerTypeFromString' [-Wmissing-prototypes]
This commit is contained in:
parent
0e913a22db
commit
c309546e8c
|
@ -823,7 +823,7 @@ SDL_COMPILE_TIME_ASSERT(map_StringForGameControllerType, SDL_arraysize(map_Strin
|
||||||
/*
|
/*
|
||||||
* convert a string to its enum equivalent
|
* convert a string to its enum equivalent
|
||||||
*/
|
*/
|
||||||
SDL_GameControllerType SDL_GetGameControllerTypeFromString(const char *str)
|
static SDL_GameControllerType SDL_GetGameControllerTypeFromString(const char *str)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue