Minor formatting fix

This commit is contained in:
Jack Andersen 2017-01-16 15:22:52 -10:00
parent e426558075
commit 3025a216a7
1 changed files with 3 additions and 1 deletions

View File

@ -715,7 +715,9 @@ FontCache::FontCache(const hecl::Runtime::FileStoreManager& fileMgr)
m_regFace(m_fontLib, DROIDSANS_PERMISSIVE, DROIDSANS_PERMISSIVE_SZ),
m_monoFace(m_fontLib, BMONOFONT, BMONOFONT_SZ),
m_curvesFace(m_fontLib, SPECTERCURVES, SPECTERCURVES_SZ)
{hecl::MakeDir(m_cacheRoot.c_str());}
{
hecl::MakeDir(m_cacheRoot.c_str());
}
FontTag FontCache::prepCustomFont(boo::IGraphicsDataFactory* gf, const std::string& name, FT_Face face,
FCharFilter filter, bool subpixel,