]> git.sesse.net Git - vlc/commitdiff
Win32: use TEXT macro for SetConsoleTitle
authorJean-Baptiste Kempf <jb@videolan.org>
Mon, 14 Jan 2013 16:29:52 +0000 (17:29 +0100)
committerJean-Baptiste Kempf <jb@videolan.org>
Mon, 14 Jan 2013 16:30:19 +0000 (17:30 +0100)
src/config/help.c

index 3103a92d900bcd9cc365e9bb97da500da590fdb6..bc9dd8282ece300b9bb374c324dee25d3dcca167 100644 (file)
@@ -813,7 +813,7 @@ static void ShowConsole( void )
      * Unicode/locale subsystem. By default, we have the obsolecent OEM code
      * page (e.g. CP437 or CP850). */
     SetConsoleOutputCP (GetACP ());
-    SetConsoleTitle ("VLC media player version "PACKAGE_VERSION);
+    SetConsoleTitle (TEXT("VLC media player version "PACKAGE_VERSION));
 
     freopen( "CONOUT$", "w", stderr );
     freopen( "CONIN$", "r", stdin );