Commit a99f2ab5 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

SDL vout: never override signals (rather than only in debug builds)

parent 8f683236
......@@ -142,10 +142,8 @@ static int Open(vlc_object_t *object)
/* Win32 SDL implementation doesn't support SDL_INIT_EVENTTHREAD yet*/
sdl_flags |= SDL_INIT_EVENTTHREAD;
#endif
#ifndef NDEBUG
/* In debug mode you may want vlc to dump a core instead of staying stuck */
sdl_flags |= SDL_INIT_NOPARACHUTE;
#endif
/* Initialize library */
if (SDL_Init(sdl_flags) < 0) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment