From e5da12a15b7b1b62b599fb1bdae2905f5383253b Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sun, 24 Jan 2010 17:54:57 +0000 Subject: [PATCH] Patched to compile on Visual C++. --- src/video/SDL_video.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/video/SDL_video.c b/src/video/SDL_video.c index cd5b1fdd2..08e4798cb 100644 --- a/src/video/SDL_video.c +++ b/src/video/SDL_video.c @@ -1676,6 +1676,9 @@ void SDL_GL_Unlock() #endif } + +void SDL_Audio_SetCaption(const char *caption); + /* * Sets/Gets the title and icon text of the display window, if any. */ @@ -1703,7 +1706,6 @@ void SDL_WM_SetCaption (const char *title, const char *icon) } /* PulseAudio can make use of this information. */ - extern void SDL_Audio_SetCaption(const char *caption); SDL_Audio_SetCaption(title); }