[vlc-commits] dummy: Never show intromsg

Hugo Beauzée-Luyssen git at videolan.org
Wed Mar 21 10:50:37 CET 2018


vlc | branch: master | Hugo Beauzée-Luyssen <hugo at beauzee.fr> | Wed Mar 21 10:20:32 2018 +0100| [2bc26eb597ca55c5773fe84bacc32629255c03f8] | committer: Hugo Beauzée-Luyssen

dummy: Never show intromsg

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=2bc26eb597ca55c5773fe84bacc32629255c03f8
---

 modules/control/dummy.c | 10 ----------
 1 file changed, 10 deletions(-)

diff --git a/modules/control/dummy.c b/modules/control/dummy.c
index d2a40da110..4e0406dd5a 100644
--- a/modules/control/dummy.c
+++ b/modules/control/dummy.c
@@ -41,9 +41,6 @@
     "Enabling the quiet mode will not bring this command box but can also " \
     "be pretty annoying when you want to stop VLC and no video window is " \
     "open." )
-#if !VLC_WINSTORE_APP
-#include "intromsg.h"
-#endif
 #endif
 
 static int Open( vlc_object_t * );
@@ -65,13 +62,6 @@ static int Open( vlc_object_t *p_this )
 {
     intf_thread_t *p_intf = (intf_thread_t*) p_this;
 
-#if defined(_WIN32) && !VLC_WINSTORE_APP
-    bool b_quiet;
-    b_quiet = var_InheritBool( p_intf, "dummy-quiet" );
-    if( !b_quiet )
-        intf_consoleIntroMsg(p_intf);
-#endif
-
     msg_Info( p_intf, "using the dummy interface module..." );
 
     return VLC_SUCCESS;



More information about the vlc-commits mailing list