diff --git a/File_Format_Library/GUI/BXFNT/BffntEditor.cs b/File_Format_Library/GUI/BXFNT/BffntEditor.cs index 13c32c2f..33ffb7d4 100644 --- a/File_Format_Library/GUI/BXFNT/BffntEditor.cs +++ b/File_Format_Library/GUI/BXFNT/BffntEditor.cs @@ -293,8 +293,8 @@ namespace FirstPlugin.Forms { for (int r = 0; r < (int)textureGlyph.RowCount; r++) { - int x = r * textureGlyph.CellWidth; - int y = c * textureGlyph.CellHeight; + int x = r * (textureGlyph.CellWidth + 1); + int y = c * (textureGlyph.CellHeight + 1); var rect = new Rectangle(x, y, textureGlyph.CellWidth, textureGlyph.CellHeight); diff --git a/Toolbox/Lib/Syroot.NintenTools.NSW.Bfres.dll b/Toolbox/Lib/Syroot.NintenTools.NSW.Bfres.dll index 50555a67..b2b15b04 100644 Binary files a/Toolbox/Lib/Syroot.NintenTools.NSW.Bfres.dll and b/Toolbox/Lib/Syroot.NintenTools.NSW.Bfres.dll differ