Commit dd1eeec8 authored by Oleg.Korshul's avatar Oleg.Korshul Committed by Alexander Trofimov
parent 82f9c51d
......@@ -1383,7 +1383,7 @@ void CFontList::LoadFromArrayFiles(CArray<std::wstring>& oArray, int nFlag)
continue;
INT bBold = (pFace->style_flags & FT_STYLE_FLAG_BOLD ? 1 : 0);
INT bItalic = pFace->style_flags & FT_STYLE_FLAG_ITALIC;
INT bItalic = (pFace->style_flags & FT_STYLE_FLAG_ITALIC) ? 1 : 0;
const char* pPostName = FT_Get_Postscript_Name(pFace);
std::string sPostscriptName = "";
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment