From d1a4d5616f792c6ad84bcc5011040167ddd7cc3f Mon Sep 17 00:00:00 2001 From: Rod Sheeter Date: Mon, 12 Feb 2018 16:25:32 -0800 Subject: [PATCH] output format 12 as enc 10 to match how Roboto did it --- src/hb-ot-cmap-table.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hb-ot-cmap-table.hh b/src/hb-ot-cmap-table.hh index 4d32359df..5ac970612 100644 --- a/src/hb-ot-cmap-table.hh +++ b/src/hb-ot-cmap-table.hh @@ -577,7 +577,7 @@ struct cmap EncodingRecord &rec = cmap->encodingRecord[0]; rec.platformID.set (3); // Windows - rec.encodingID.set (1); // Unicode BMP + rec.encodingID.set (10); // Unicode UCS-4 /* capture offset to subtable */ CmapSubtable &subtable = rec.subtable.serialize(&context, cmap);