Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Corrected internal function prototype.
Browse files Browse the repository at this point in the history
  • Loading branch information
philippwiesemann committed May 15, 2013
1 parent 76b7c16 commit 094da7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/video/SDL_sysvideo.h
Expand Up @@ -375,7 +375,7 @@ extern void SDL_OnWindowFocusLost(SDL_Window * window);
extern void SDL_UpdateWindowGrab(SDL_Window * window);
extern SDL_Window * SDL_GetFocusWindow(void);

extern SDL_bool SDL_ShouldAllowTopmost();
extern SDL_bool SDL_ShouldAllowTopmost(void);

#endif /* _SDL_sysvideo_h */

Expand Down
2 changes: 1 addition & 1 deletion src/video/SDL_video.c
Expand Up @@ -3054,7 +3054,7 @@ SDL_ShowSimpleMessageBox(Uint32 flags, const char *title, const char *message, S
}

SDL_bool
SDL_ShouldAllowTopmost()
SDL_ShouldAllowTopmost(void)
{
const char *hint = SDL_GetHint(SDL_HINT_ALLOW_TOPMOST);
if (hint) {
Expand Down

0 comments on commit 094da7c

Please sign in to comment.