summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/menu.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/menu.c b/apps/menu.c
index ab665b8f04..b49bd3a17b 100644
--- a/apps/menu.c
+++ b/apps/menu.c
@@ -59,12 +59,15 @@ void put_cursorxy(int x, int y, bool on)
59#ifdef HAVE_LCD_BITMAP 59#ifdef HAVE_LCD_BITMAP
60 lcd_bitmap ( bitmap_icons_6x8[Cursor], 60 lcd_bitmap ( bitmap_icons_6x8[Cursor],
61 x*6, y*8, 4, 8, true); 61 x*6, y*8, 4, 8, true);
62#elif defined(SIMULATOR)
63 unsigned char cursor[] = { 0x7f, 0x3e, 0x1c, 0x08 };
64 lcd_bitmap ( cursor, x*6, y*8, 4, 8, true);
62#else 65#else
63 lcd_puts(x, y, CURSOR_CHAR); 66 lcd_puts(x, y, CURSOR_CHAR);
64#endif 67#endif
65 } 68 }
66 else { 69 else {
67#ifdef HAVE_LCD_BITMAP 70#if defined(HAVE_LCD_BITMAP) || defined(SIMULATOR)
68 /* I use xy here since it needs to disregard the margins */ 71 /* I use xy here since it needs to disregard the margins */
69 lcd_clearrect (x*6, y*8, 4, 8); 72 lcd_clearrect (x*6, y*8, 4, 8);
70#else 73#else