From: Steinar H. Gunderson Date: Sat, 19 Feb 2005 12:10:28 +0000 (+0000) Subject: Switch to FreeSerif for the time being, since it has more glyphs. X-Git-Url: https://git.sesse.net/?p=ccbs;a=commitdiff_plain;h=cb773758b67ea79aff43b90bcac32dda299b53e1 Switch to FreeSerif for the time being, since it has more glyphs. --- diff --git a/bigscreen/ccbs_bigscreen.cpp b/bigscreen/ccbs_bigscreen.cpp index 3e6323e..b82ab35 100644 --- a/bigscreen/ccbs_bigscreen.cpp +++ b/bigscreen/ccbs_bigscreen.cpp @@ -181,7 +181,7 @@ void init_freetype() FT_Library library; if (FT_Init_FreeType(&library)) throw std::logic_error("FreeType init failed."); - if (FT_New_Face(library, "/usr/share/fonts/truetype/msttcorefonts/Georgia.ttf", 0, &font)) + if (FT_New_Face(library, "/usr/share/fonts/truetype/freefont/FreeSerif.ttf", 0, &font)) throw std::logic_error("Face opening failed."); if (FT_Set_Char_Size(font, 0, 12 * 64, 96, 96)) throw std::logic_error("Size set failed.");