From 77e24639d63946ea93f01b34dc3cfe6fc090faab Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Sun, 26 Jul 2015 22:03:23 -0700 Subject: [PATCH] dump: Font section also includes 0x9a where 0x97/0x98/0x99 found. --- dump.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dump.c b/dump.c index a600e41ae7..90c32bf64d 100644 --- a/dump.c +++ b/dump.c @@ -757,8 +757,8 @@ dump_fonts(void) match_byte_assert(0); if (!match_byte(0)) match_byte_assert(1); - if (!match_byte(0x99) && !match_byte(0x98)) - match_byte_assert(0x97); + if (!match_byte(0x97) && !match_byte(0x98) && !match_byte(0x99)) + match_byte_assert(0x9a); match_byte_assert(7); match_byte_assert(0); match_byte_assert(0); -- 2.30.2