Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
lehieugch68 committed Mar 3, 2022
1 parent 875cca0 commit 2102155
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions FFVII-Font-Tool/FontExtractor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 2102155

Please sign in to comment.