Commit 0caf337d authored by Alexey.Musinov's avatar Alexey.Musinov Committed by Alexander Trofimov
parent 3c4da71e
...@@ -1556,6 +1556,9 @@ unsigned long TTFontDefSaveFontData(FontDef pFontDef, Stream pStream, FontAttr ...@@ -1556,6 +1556,9 @@ unsigned long TTFontDefSaveFontData(FontDef pFontDef, Stream pStream, FontAttr
memset( (void *)pUseGlyf, 0x00, pFace->num_glyphs * sizeof(unsigned char) ); memset( (void *)pUseGlyf, 0x00, pFace->num_glyphs * sizeof(unsigned char) );
for ( int nIndex = 0; nIndex < 256; nIndex++ ) for ( int nIndex = 0; nIndex < 256; nIndex++ )
{ {
if (arrCmap[nIndex] >= lGlyfsCount)
continue;
// //
pUseGlyf[arrCmap[nIndex]] = 1; pUseGlyf[arrCmap[nIndex]] = 1;
......
...@@ -2,6 +2,6 @@ ...@@ -2,6 +2,6 @@
//1 //1
//0 //0
//0 //0
//135 //136
#define INTVER 1,0,0,135 #define INTVER 1,0,0,136
#define STRVER "1,0,0,135\0" #define STRVER "1,0,0,136\0"
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