Skip to content

Commit

Permalink
misc: move menu up one line
Browse files Browse the repository at this point in the history
  • Loading branch information
mean committed Jun 24, 2023
1 parent fc26d9e commit 8f8a63b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dso_gfx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ static void charToPix(int x, int y, int &w, int &l)
if (y < 0)
l = 240 + FONT_SIZE_Y * y;
else
l = FONT_SIZE_Y * y + 2 * FONT_SIZE_Y;
l = FONT_SIZE_Y * y + FONT_SIZE_Y;

if (x < 0)
w = 320 + FONT_SIZE_X * x;
Expand Down

0 comments on commit 8f8a63b

Please sign in to comment.