[vlc-commits] freetype: changed the default font for OS X to 'Arial	Unicode' (close #6087 )
    Felix Paul Kühne 
    git at videolan.org
       
    Mon Feb 27 21:25:57 CET 2012
    
    
  
vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Mon Feb 27 21:10:37 2012 +0100| [ee647c11403dbf64805f4e88e093114be59dea2a] | committer: Felix Paul Kühne
freetype: changed the default font for OS X to 'Arial Unicode' (close #6087)
This appears to be the only sane font installed by default which supports at least Latin, Arabic, Traditional Chinese, Simplified Chinese, Japanese, Korean, Cyrillic, Vietnamese, Hebrew, Devanagari, Gujarati, Urdu, Tamil, Thai and Telugu
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ee647c11403dbf64805f4e88e093114be59dea2a
---
 modules/text_renderer/freetype.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/text_renderer/freetype.c b/modules/text_renderer/freetype.c
index 795f00b..2459c09 100644
--- a/modules/text_renderer/freetype.c
+++ b/modules/text_renderer/freetype.c
@@ -46,8 +46,8 @@
 
 /* Default fonts */
 #ifdef __APPLE__
-# define DEFAULT_FONT_FILE "/Library/Fonts/Arial Black.ttf"
-# define DEFAULT_FAMILY "Arial Black"
+# define DEFAULT_FONT_FILE "/Library/Fonts/Arial Unicode.ttf"
+# define DEFAULT_FAMILY "Arial Unicode MS"
 #elif defined( WIN32 )
 # define DEFAULT_FONT_FILE "arial.ttf" /* Default path font found at run-time */
 # define DEFAULT_FAMILY "Arial"
    
    
More information about the vlc-commits
mailing list