Commit db6b6f8c authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Win32: use TEXT macro for SetConsoleTitle

parent 51071756
...@@ -813,7 +813,7 @@ static void ShowConsole( void ) ...@@ -813,7 +813,7 @@ static void ShowConsole( void )
* Unicode/locale subsystem. By default, we have the obsolecent OEM code * Unicode/locale subsystem. By default, we have the obsolecent OEM code
* page (e.g. CP437 or CP850). */ * page (e.g. CP437 or CP850). */
SetConsoleOutputCP (GetACP ()); SetConsoleOutputCP (GetACP ());
SetConsoleTitle ("VLC media player version "PACKAGE_VERSION); SetConsoleTitle (TEXT("VLC media player version "PACKAGE_VERSION));
freopen( "CONOUT$", "w", stderr ); freopen( "CONOUT$", "w", stderr );
freopen( "CONIN$", "r", stdin ); freopen( "CONIN$", "r", stdin );
......
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