Commit 8e459605 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Use more common CP1252 rather than Latin-9 as fallback charset

parent 89e1637e
...@@ -1975,8 +1975,7 @@ static void LocaleInit( void ) ...@@ -1975,8 +1975,7 @@ static void LocaleInit( void )
* Western Europeans are being favored for historical reasons. * Western Europeans are being favored for historical reasons.
*/ */
psz_conv = strcmp( psz_charset, "ASCII" ) psz_conv = strcmp( psz_charset, "ASCII" )
? psz_charset ? psz_charset : "CP1252";
: "ISO-8859-15";
vlc_mutex_init( p_libvlc, &libvlc.from_locale_lock ); vlc_mutex_init( p_libvlc, &libvlc.from_locale_lock );
vlc_mutex_init( p_libvlc, &libvlc.to_locale_lock ); vlc_mutex_init( p_libvlc, &libvlc.to_locale_lock );
......
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