Skip to content

Commit

Permalink
Fixed compiler warning on iOS
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Oct 16, 2017
1 parent e4ef188 commit 556a854
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/joystick/steam/SDL_steamcontroller.c
Expand Up @@ -37,15 +37,15 @@ void SDL_GetSteamControllerInputs(int *nbuttons, int *naxes, int *nhats)
*nhats = 0;
}

void SDL_UpdateSteamControllers()
void SDL_UpdateSteamControllers(void)
{
}

void SDL_UpdateSteamController(SDL_Joystick *joystick)
{
}

void SDL_QuitSteamControllers()
void SDL_QuitSteamControllers(void)
{
}

Expand Down
4 changes: 2 additions & 2 deletions src/joystick/steam/SDL_steamcontroller.h
Expand Up @@ -26,8 +26,8 @@ typedef void (*SteamControllerDisconnectedCallback_t)(int device_instance);
void SDL_InitSteamControllers(SteamControllerConnectedCallback_t connectedCallback,
SteamControllerDisconnectedCallback_t disconnectedCallback);
void SDL_GetSteamControllerInputs(int *nbuttons, int *naxes, int *nhats);
void SDL_UpdateSteamControllers();
void SDL_UpdateSteamControllers(void);
void SDL_UpdateSteamController(SDL_Joystick *joystick);
void SDL_QuitSteamControllers();
void SDL_QuitSteamControllers(void);

/* vi: set ts=4 sw=4 expandtab: */

0 comments on commit 556a854

Please sign in to comment.