From dba482fc4458776ffebdeb2d34b970b4223fa8fd Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Fri, 17 Apr 2015 13:08:08 -0700 Subject: [PATCH] [ot-font] Accept MS Symbol cmap if nothing else found --- src/hb-ot-font.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/hb-ot-font.cc b/src/hb-ot-font.cc index f6f979d01..30dcdd414 100644 --- a/src/hb-ot-font.cc +++ b/src/hb-ot-font.cc @@ -114,6 +114,7 @@ struct hb_ot_face_cmap_accelerator_t if (!subtable) subtable = cmap->find_subtable (0, 2); if (!subtable) subtable = cmap->find_subtable (0, 1); if (!subtable) subtable = cmap->find_subtable (0, 0); + if (!subtable) subtable = cmap->find_subtable (3, 0); /* Meh. */ if (!subtable) subtable = &OT::Null(OT::CmapSubtable);