From 8e614ade5aef102baed56f91c2fcb1f3d1788ea9 Mon Sep 17 00:00:00 2001 From: Garret Rieger Date: Tue, 20 Feb 2018 17:36:54 -0800 Subject: [PATCH] [subset] Reverse table order for font serialization to match what OTS expects. --- src/hb-open-file-private.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hb-open-file-private.hh b/src/hb-open-file-private.hh index f01ab8718..88ce65a40 100644 --- a/src/hb-open-file-private.hh +++ b/src/hb-open-file-private.hh @@ -54,7 +54,7 @@ struct TTCHeader; typedef struct TableRecord { int cmp (Tag t) const - { return t.cmp (tag); } + { return -t.cmp (tag); } static int cmp (const void *pa, const void *pb) {