[subset] Reverse table order for font serialization to match what OTS expects.

This commit is contained in:
Garret Rieger 2018-02-20 17:36:54 -08:00 committed by Behdad Esfahbod
parent a998eeee4a
commit 8e614ade5a
1 changed files with 1 additions and 1 deletions

View File

@ -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)
{