From: RĂ©mi Denis-Courmont Date: Sat, 11 Feb 2006 14:53:44 +0000 (+0000) Subject: Use more common CP1252 rather than Latin-9 as fallback charset X-Git-Tag: 0.9.0-test0~12418 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=8e459605c2b08a1c163d856c647b6cd0e0f99311;p=vlc Use more common CP1252 rather than Latin-9 as fallback charset --- diff --git a/src/libvlc.c b/src/libvlc.c index a81ba730e6..42cda6d8d0 100644 --- a/src/libvlc.c +++ b/src/libvlc.c @@ -1975,8 +1975,7 @@ static void LocaleInit( void ) * Western Europeans are being favored for historical reasons. */ psz_conv = strcmp( psz_charset, "ASCII" ) - ? psz_charset - : "ISO-8859-15"; + ? psz_charset : "CP1252"; vlc_mutex_init( p_libvlc, &libvlc.from_locale_lock ); vlc_mutex_init( p_libvlc, &libvlc.to_locale_lock );