From 5f6caa9578dedcb006b3b55e64923de8d27337fb Mon Sep 17 00:00:00 2001 From: Julian Orth Date: Thu, 6 Aug 2020 09:22:16 +0200 Subject: [PATCH] Fix fontforge constant The value of the fontforge constant meaning ttf_flag_nohints was changed in fontforge commit 1536d58fb5969c73644337053c8af2ffe3e0ae82 from 0x8 to 0x80000. --- scripts/generate.pe | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/generate.pe b/scripts/generate.pe index 5d9d03d2..f295646d 100755 --- a/scripts/generate.pe +++ b/scripts/generate.pe @@ -8,13 +8,13 @@ # ./generate.pe *.sfd # font generation flags: -# 8 => do not include TT instructions (for experimental typefaces) +# 0x80000 => do not include TT instructions (for experimental typefaces) # 0x20 => generate a 'PfEd' table and store glyph comments # 0x40 => generate a 'PfEd' table and store glyph colors # 0x800 => generate old fashioned kern tables. # - this one is important because it generates correct kerning tables def_gen_flags = 0x20 + 0x40 + 0x800 -exp_gen_flags = def_gen_flags + 8 +exp_gen_flags = def_gen_flags + 0x80000 if ($version < "20080330") Error("Your version of FontForge is too old - 20080330 or newer is required"); -- 2.28.0