mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-09-22 19:18:30 +00:00
Fixed empty parameter list in signatures of internal functions.
This commit is contained in:
@@ -363,12 +363,14 @@ SDL_SYS_JoystickInit(void)
|
||||
|
||||
}
|
||||
|
||||
int SDL_SYS_NumJoysticks()
|
||||
int
|
||||
SDL_SYS_NumJoysticks(void)
|
||||
{
|
||||
return numjoysticks;
|
||||
}
|
||||
|
||||
void SDL_SYS_JoystickDetect()
|
||||
void
|
||||
SDL_SYS_JoystickDetect(void)
|
||||
{
|
||||
/* Support for device connect/disconnect is API >= 16 only,
|
||||
* so we poll every three seconds
|
||||
|
Reference in New Issue
Block a user