Skip to content

Commit

Permalink
refactor: Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
furesoft authored Oct 25, 2024
1 parent b38dde7 commit 8a305b1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/MimaSim/MimaSim/MIMA/Font.cs
Original file line number Diff line number Diff line change
Expand Up @@ -414,14 +414,14 @@ public void DrawChar(short xOffset, short yOffset, char ch)
{
bool[] boxPixels =
[
true, true, true, true, true, true, true,
true, false, false, false, false, false, true,
true, false, true, false, false, false, true,
true, false, false, false, false, false, true,
true, true, true, true, true, true, true
true, true, true, true, true, true,
true, false, false, false, false, true,
true, false, true, false, false, true,
true, false, false, false, false, true,
true, true, true, true, true, true
];

DrawChar(7, boxPixels, yOffset, xOffset);
DrawChar(6, boxPixels, yOffset, xOffset);
}

var (pixels, width) = character;
Expand Down

0 comments on commit 8a305b1

Please sign in to comment.