[vlc-commits] dummy: Never show intromsg

Hugo Beauzée-Luyssen git at videolan.org
Wed Mar 21 15:08:02 CET 2018


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

dummy: Never show intromsg

(cherry picked from commit 2bc26eb597ca55c5773fe84bacc32629255c03f8)
Signed-off-by: Hugo Beauzée-Luyssen <hugo at beauzee.fr>

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

 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