summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libvo/vo_sdl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/vo_sdl.c b/libvo/vo_sdl.c
index 293287edfa..1e108c34dd 100644
--- a/libvo/vo_sdl.c
+++ b/libvo/vo_sdl.c
@@ -354,7 +354,7 @@ static int sdl_open (void *plugin, void *name)
priv->bpp = 0;
/* initialize the SDL Video system */
- if (SDL_Init (SDL_INIT_VIDEO/*|SDL_INIT_NOPARACHUTE*/)) {
+ if (SDL_Init (SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE)) {
printf("SDL: Initializing of SDL failed: %s.\n", SDL_GetError());
return -1;
}