From 5188f28eb0ae7f8f865a433619958f6e9d76fe51 Mon Sep 17 00:00:00 2001 From: treeform Date: Thu, 2 Sep 2021 10:35:46 -0700 Subject: [PATCH] f --- src/pixie/fontformats/opentype.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pixie/fontformats/opentype.nim b/src/pixie/fontformats/opentype.nim index c31e5f3..0d62fc6 100644 --- a/src/pixie/fontformats/opentype.nim +++ b/src/pixie/fontformats/opentype.nim @@ -520,7 +520,7 @@ proc parseHheaTable(buf: string, offset: int): HheaTable = # discard buf.readUint16(offset + 30).swap() # Reserved result.metricDataFormat = buf.readInt16(offset + 32).swap() if result.metricDataFormat != 0: - failUnsupported("Hhea glyph data format") + failUnsupported("Hhea metric data format") result.numberOfHMetrics = buf.readUint16(offset + 34).swap() proc parseMaxpTable(buf: string, offset: int): MaxpTable =