[vlc-commits] libass: switch the Winstore font to Noto Sans

Steve Lhomme git at videolan.org
Thu Jun 16 18:20:44 CEST 2016


vlc | branch: master | Steve Lhomme <robux4 at videolabs.io> | 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 <hugo at beauzee.fr>

> 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 */



More information about the vlc-commits mailing list