From 7fa573cd619cd1e6ddbecf500e6d3009694cc97d Mon Sep 17 00:00:00 2001 From: IntellectualKitty Date: Sun, 4 Dec 2016 16:06:34 -0700 Subject: [PATCH] Update stb_truetype.h --- stb_truetype.h | 1 + 1 file changed, 1 insertion(+) diff --git a/stb_truetype.h b/stb_truetype.h index 88a2da1..c3d8e65 100644 --- a/stb_truetype.h +++ b/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; }