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
|
@ -189,7 +189,7 @@ SDL_SYS_HapticInit(void)
|
|||
}
|
||||
|
||||
int
|
||||
SDL_SYS_NumHaptics()
|
||||
SDL_SYS_NumHaptics(void)
|
||||
{
|
||||
return numhaptics;
|
||||
}
|
||||
|
|
|
@ -187,7 +187,7 @@ SDL_SYS_HapticInit(void)
|
|||
}
|
||||
|
||||
int
|
||||
SDL_SYS_NumHaptics()
|
||||
SDL_SYS_NumHaptics(void)
|
||||
{
|
||||
return numhaptics;
|
||||
}
|
||||
|
|
|
@ -98,7 +98,7 @@ SDL_SYS_RemoveHapticDevice(SDL_hapticlist_item *prev, SDL_hapticlist_item *item)
|
|||
}
|
||||
|
||||
int
|
||||
SDL_SYS_NumHaptics()
|
||||
SDL_SYS_NumHaptics(void)
|
||||
{
|
||||
return numhaptics;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue