mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-09-28 05:58:29 +00:00
Fixed empty parameter list in signatures of internal functions.
This commit is contained in:
@@ -84,12 +84,12 @@ extern "C"
|
||||
return (SDL_SYS_numjoysticks);
|
||||
}
|
||||
|
||||
int SDL_SYS_NumJoysticks()
|
||||
int SDL_SYS_NumJoysticks(void)
|
||||
{
|
||||
return SDL_SYS_numjoysticks;
|
||||
}
|
||||
|
||||
void SDL_SYS_JoystickDetect()
|
||||
void SDL_SYS_JoystickDetect(void)
|
||||
{
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user