From: Garret Rieger Date: Wed, 21 Feb 2018 01:36:54 +0000 (-0800) Subject: [subset] Reverse table order for font serialization to match what OTS expects. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8e614ade5aef102baed56f91c2fcb1f3d1788ea9;p=platform%2Fupstream%2FlibHarfBuzzSharp.git [subset] Reverse table order for font serialization to match what OTS expects. --- diff --git a/src/hb-open-file-private.hh b/src/hb-open-file-private.hh index f01ab87..88ce65a 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) {