Fixed empty parameter list in signatures of internal functions.

This commit is contained in:
Philipp Wiesemann
2016-11-16 22:08:51 +01:00
parent 818d1d3e80
commit 97aa577589
20 changed files with 45 additions and 31 deletions

View File

@@ -580,7 +580,7 @@ SDL_SYS_JoystickInit(void)
/* Function to return the number of joystick devices plugged in right now */
int
SDL_SYS_NumJoysticks()
SDL_SYS_NumJoysticks(void)
{
recDevice *device = gpDeviceList;
int nJoySticks = 0;
@@ -598,7 +598,7 @@ SDL_SYS_NumJoysticks()
/* Function to cause any queued joystick insertions to be processed
*/
void
SDL_SYS_JoystickDetect()
SDL_SYS_JoystickDetect(void)
{
recDevice *device = gpDeviceList;
while (device) {