From 8fcddee536c87a2dbe731c2d8df92743a887cb09 Mon Sep 17 00:00:00 2001 From: atmos4 Date: Thu, 24 Jan 2002 21:46:57 +0000 Subject: [PATCH] Let mplayer handle signals so terminal gets cleaned up. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4343 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libvo/vo_sdl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }