Fixed empty parameter list in signatures of internal functions.
This commit is contained in:
parent
f69c47aaea
commit
2a8a7f92b7
20 changed files with 45 additions and 31 deletions
|
@ -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)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue