diff options
| -rw-r--r-- | apps/menu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/menu.c b/apps/menu.c index 6ba2b8c..ab665b8 100644 --- a/apps/menu.c +++ b/apps/menu.c @@ -66,7 +66,7 @@ void put_cursorxy(int x, int y, bool on) else { #ifdef HAVE_LCD_BITMAP /* I use xy here since it needs to disregard the margins */ - lcd_clearrect (x*6, y*6, 4, 8); + lcd_clearrect (x*6, y*8, 4, 8); #else lcd_puts(x, y, " "); #endif |