mirror of
https://github.com/encounter/SDL.git
synced 2025-12-12 06:45:10 +00:00
Fixed empty parameter list in signatures of internal functions.
This commit is contained in:
@@ -183,12 +183,14 @@ SDL_SYS_JoystickInit(void)
|
||||
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)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
@@ -307,7 +307,7 @@ SDL_SYS_JoystickInit(void)
|
||||
|
||||
/* return the number of joysticks that are connected right now */
|
||||
int
|
||||
SDL_SYS_NumJoysticks()
|
||||
SDL_SYS_NumJoysticks(void)
|
||||
{
|
||||
int nJoysticks = 0;
|
||||
JoyStick_DeviceData *device = SYS_Joystick;
|
||||
@@ -321,7 +321,7 @@ SDL_SYS_NumJoysticks()
|
||||
|
||||
/* detect any new joysticks being inserted into the system */
|
||||
void
|
||||
SDL_SYS_JoystickDetect()
|
||||
SDL_SYS_JoystickDetect(void)
|
||||
{
|
||||
JoyStick_DeviceData *pCurList = NULL;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user