Commit 5979db31 authored by Gildas Bazin's avatar Gildas Bazin

* src/libvlc.c: forgot to reload the command line options after we reload the main module when the user disables the translation.
parent d0ba140b
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* libvlc.c: main libvlc source * libvlc.c: main libvlc source
***************************************************************************** *****************************************************************************
* Copyright (C) 1998-2002 VideoLAN * Copyright (C) 1998-2002 VideoLAN
* $Id: libvlc.c,v 1.80 2003/04/22 16:36:16 titer Exp $ * $Id: libvlc.c,v 1.81 2003/04/24 17:44:53 gbazin Exp $
* *
* Authors: Vincent Seguin <seguin@via.ecp.fr> * Authors: Vincent Seguin <seguin@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org> * Samuel Hocevar <sam@zoy.org>
...@@ -341,6 +341,7 @@ int VLC_Init( int i_object, int i_argc, char *ppsz_argv[] ) ...@@ -341,6 +341,7 @@ int VLC_Init( int i_object, int i_argc, char *ppsz_argv[] )
module_EndBank( p_vlc ); module_EndBank( p_vlc );
module_InitBank( &libvlc ); module_InitBank( &libvlc );
module_LoadMain( &libvlc ); module_LoadMain( &libvlc );
config_LoadCmdLine( p_vlc, &i_argc, ppsz_argv, VLC_TRUE );
} }
#endif #endif
......
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