summaryrefslogtreecommitdiffstats
path: root/libvo/gl_common.c
diff options
context:
space:
mode:
Diffstat (limited to 'libvo/gl_common.c')
-rw-r--r--libvo/gl_common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libvo/gl_common.c b/libvo/gl_common.c
index 3de2e5450c..c37172b382 100644
--- a/libvo/gl_common.c
+++ b/libvo/gl_common.c
@@ -1937,7 +1937,7 @@ int init_mpglcontext(MPGLContext *ctx, enum MPGLType type) {
ctx->swapGlBuffers = swapGlBuffers_sdl;
ctx->check_events = sdl_check_events;
ctx->fullscreen = vo_sdl_fullscreen;
- return 1;
+ return vo_sdl_init();
#endif
default:
return 0;
@@ -1959,7 +1959,7 @@ void uninit_mpglcontext(MPGLContext *ctx) {
#endif
#ifdef CONFIG_GL_SDL
case GLTYPE_SDL:
- SDL_QuitSubSystem(SDL_INIT_VIDEO);
+ vo_sdl_uninit();
break;
#endif
}