Change the default font path.

This commit is contained in:
Lee, Jae-Hong 2013-05-06 20:40:45 +09:00
parent 2a332a5862
commit e1cf030372
1 changed files with 1 additions and 1 deletions

View File

@ -322,7 +322,7 @@ public:
std::string fontfile = getFontFile(pFontName);
if ( FT_New_Face(library, fontfile.c_str(), 0, &face) ) {
//no valid font found use default
if ( FT_New_Face(library, "/usr/share/fonts/truetype/freefont/FreeSerif.ttf", 0, &face) ) {
if ( FT_New_Face(library, "/usr/share/fonts/TizenSansRegular.ttf", 0, &face) ) {
return false;
}
}