From 15126cfddd507fd38aa825cdf1ea269a4b6a3c56 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Fri, 13 Dec 2019 18:37:52 +0000 Subject: [PATCH] Don't auto-hint mosaic graphics characters. Suggested by Jason A. --- bedstead.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bedstead.c b/bedstead.c index c69fa90..e8afe54 100644 --- a/bedstead.c +++ b/bedstead.c @@ -1794,7 +1794,10 @@ main(int argc, char **argv) glyphs[i].unicode != -1 ? glyphs[i].unicode : 65536 + extraglyphs++, glyphs[i].unicode, i); printf("Width: %g\n", (double)(XSIZE * XPIX)); - printf("Flags: HW\n"); + if (glyphs[i].flags & (MOS|MOS4)) + printf("Flags: W\n"); + else + printf("Flags: HW\n"); printf("LayerCount: 2\n"); dolookups(&glyphs[i]); if (glyphs[i].flags & MOS) -- 2.30.2