[vlc-commits] codec: ass: Don't force fonts that aren' t shipped anymore in the winstore app
Hugo Beauzée-Luyssen
git at videolan.org
Wed Dec 14 12:48:30 CET 2016
vlc | branch: master | Hugo Beauzée-Luyssen <hugo at beauzee.fr> | Wed Dec 14 12:46:36 2016 +0100| [aeb22b2cb088d15a14bf5a8b61868349682451ec] | committer: Hugo Beauzée-Luyssen
codec: ass: Don't force fonts that aren't shipped anymore in the winstore app
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=aeb22b2cb088d15a14bf5a8b61868349682451ec
---
modules/codec/libass.c | 3 ---
1 file changed, 3 deletions(-)
diff --git a/modules/codec/libass.c b/modules/codec/libass.c
index 44b47db..3eec9de 100644
--- a/modules/codec/libass.c
+++ b/modules/codec/libass.c
@@ -218,9 +218,6 @@ static int Create( vlc_object_t *p_this )
#elif defined( __APPLE__ )
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 = "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 */
More information about the vlc-commits
mailing list