commit | dba482fc4458776ffebdeb2d34b970b4223fa8fd | [log] [tgz] |
---|---|---|
author | Behdad Esfahbod <behdad@behdad.org> | Fri Apr 17 13:08:08 2015 -0700 |
committer | Behdad Esfahbod <behdad@behdad.org> | Fri Apr 17 13:08:08 2015 -0700 |
tree | baa45776cf0493d537da9b8845cfde0a6857308c | |
parent | 3029e8b59d1667dc6a53355be89a2b55d7089b88 [diff] |
[ot-font] Accept MS Symbol cmap if nothing else found
diff --git a/src/hb-ot-font.cc b/src/hb-ot-font.cc index f6f979d..30dcdd4 100644 --- a/src/hb-ot-font.cc +++ b/src/hb-ot-font.cc
@@ -114,6 +114,7 @@ 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);