Make sure that glyph count is set properly

This commit is contained in:
Joshua Granick
2015-07-03 05:17:38 -07:00
parent 04127f556f
commit 49e485480e

View File

@@ -853,7 +853,7 @@ namespace lime {
if (count > 0) {
*(bytes->Data ()) = count;
*(uint32_t*)(bytes->Data ()) = count;
}
@@ -869,7 +869,8 @@ namespace lime {
FT_Set_Char_Size ((FT_Face)face, (int)(size*64), (int)(size*64), hdpi, vdpi);
mSize = size;
}
}
}