vlc | branch: master | Steve Lhomme <[email protected]> | Thu Jun 16 18:08:09 2016 +0200| [00fdc2cde79fca661f26f7677f8572ad1553fd4d] | committer: Hugo Beauzée-Luyssen
libass: switch the Winstore font to Noto Sans Signed-off-by: Hugo Beauzée-Luyssen <[email protected]> > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=00fdc2cde79fca661f26f7677f8572ad1553fd4d --- modules/codec/libass.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/codec/libass.c b/modules/codec/libass.c index 1f6697e..44b47db 100644 --- a/modules/codec/libass.c +++ b/modules/codec/libass.c @@ -219,8 +219,8 @@ static int Create( vlc_object_t *p_this ) const char *psz_font = NULL; /* We don't ship a default font with VLC */ const char *psz_family = "Helvetica Neue"; /* Use HN if we can't find anything more suitable - Arial is not on all Apple platforms */ #elif VLC_WINSTORE_APP - const char *psz_font = "segoeui.ttf"; - const char *psz_family = "Segoe UI"; + const char *psz_font = "NotoSans-Regular.ttf"; + const char *psz_family = "Noto Sans"; #else const char *psz_font = NULL; /* We don't ship a default font with VLC */ const char *psz_family = "Arial"; /* Use Arial if we can't find anything more suitable */ _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
