Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
KillzXGaming committed Sep 3, 2024
1 parent f9226ce commit dc19c51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions File_Format_Library/GUI/BXFNT/BffntEditor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -293,8 +293,8 @@ private void FillCells()
{
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);

Expand Down
Binary file modified Toolbox/Lib/Syroot.NintenTools.NSW.Bfres.dll
Binary file not shown.

0 comments on commit dc19c51

Please sign in to comment.