From 21021550cf687c64a90fd33ed520372c3cac3151 Mon Sep 17 00:00:00 2001 From: lehieugch68 Date: Fri, 4 Mar 2022 00:28:07 +0700 Subject: [PATCH] Update --- FFVII-Font-Tool/FontExtractor.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/FFVII-Font-Tool/FontExtractor.cs b/FFVII-Font-Tool/FontExtractor.cs index a3f2c99..b05feac 100644 --- a/FFVII-Font-Tool/FontExtractor.cs +++ b/FFVII-Font-Tool/FontExtractor.cs @@ -224,12 +224,17 @@ public static void ImportGlyphs(string uexp, string input, string output, bool f if (temp >= 0) { glyphs.Add(newGlyphs[temp]); + newGlyphs.RemoveAt(temp); } else { glyphs.Add(glyph); } } + foreach (var glyph in newGlyphs) + { + glyphs.Add(glyph); + } } else glyphs = newGlyphs;