Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
8e459605
Commit
8e459605
authored
Feb 11, 2006
by
Rémi Denis-Courmont
Browse files
Use more common CP1252 rather than Latin-9 as fallback charset
parent
89e1637e
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/libvlc.c
View file @
8e459605
...
...
@@ -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
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment