]> git.sesse.net Git - vlc/commitdiff
Use more common CP1252 rather than Latin-9 as fallback charset
authorRémi Denis-Courmont <rem@videolan.org>
Sat, 11 Feb 2006 14:53:44 +0000 (14:53 +0000)
committerRémi Denis-Courmont <rem@videolan.org>
Sat, 11 Feb 2006 14:53:44 +0000 (14:53 +0000)
src/libvlc.c

index a81ba730e607ca0dc145e0be03652619bab888ac..42cda6d8d0411e08cea01b568ecf975b37ae39a6 100644 (file)
@@ -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 );