summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-04-25 08:40:28 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-04-25 08:40:28 +0000
commit8b8fd879ac48ee1472facc04ac4daeaeff48c18f (patch)
treeea1544434a768a9d378b7c248adaea1e461e82fc /libvo
parenta83117e972f528ceead87b70b249a5e233d4f13b (diff)
downloadmpv-8b8fd879ac48ee1472facc04ac4daeaeff48c18f.tar.bz2
mpv-8b8fd879ac48ee1472facc04ac4daeaeff48c18f.tar.xz
Set SDL window title.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31076 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_gl.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libvo/vo_gl.c b/libvo/vo_gl.c
index e6b14eb0e6..3c621d00c7 100644
--- a/libvo/vo_gl.c
+++ b/libvo/vo_gl.c
@@ -598,6 +598,7 @@ static int create_window(uint32_t d_width, uint32_t d_height, uint32_t flags, co
#endif
#ifdef CONFIG_GL_SDL
if (glctx.type == GLTYPE_SDL) {
+ SDL_WM_SetCaption(title, NULL);
vo_dwidth = d_width;
vo_dheight = d_height;
}