瀏覽代碼

Update stb_truetype.h

IntellectualKitty 8 年之前
父節點
當前提交
7fa573cd61
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      stb_truetype.h

+ 1 - 0
stb_truetype.h

@@ -978,6 +978,7 @@ static int stbtt__isfont(stbtt_uint8 *font)
    if (stbtt_tag(font, "typ1"))   return 1; // TrueType with type 1 font -- we don't support this!
    if (stbtt_tag(font, "OTTO"))   return 1; // OpenType with CFF
    if (stbtt_tag4(font, 0,1,0,0)) return 1; // OpenType 1.0
+   if (stbtt_tag(font, "true"))   return 1; // Apple specification for TrueType fonts
    return 0;
 }