summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/menu.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/apps/menu.c b/apps/menu.c
index a0102c0ecb..94fc88bda5 100644
--- a/apps/menu.c
+++ b/apps/menu.c
@@ -107,10 +107,6 @@ void put_cursorxy(int x, int y, bool on)
107#ifdef HAVE_LCD_BITMAP 107#ifdef HAVE_LCD_BITMAP
108 lcd_bitmap ( bitmap_icons_6x8[Cursor], 108 lcd_bitmap ( bitmap_icons_6x8[Cursor],
109 xpos, ypos, 4, 8, true); 109 xpos, ypos, 4, 8, true);
110#elif defined(SIMULATOR)
111 /* player simulator */
112 unsigned char cursor[] = { 0x7f, 0x3e, 0x1c, 0x08 };
113 lcd_bitmap ( cursor, x*6, 12+y*16, 4, 8, true);
114#else 110#else
115 lcd_putc(x, y, CURSOR_CHAR); 111 lcd_putc(x, y, CURSOR_CHAR);
116#endif 112#endif
@@ -119,9 +115,6 @@ void put_cursorxy(int x, int y, bool on)
119#if defined(HAVE_LCD_BITMAP) 115#if defined(HAVE_LCD_BITMAP)
120 /* I use xy here since it needs to disregard the margins */ 116 /* I use xy here since it needs to disregard the margins */
121 lcd_clearrect (xpos, ypos, 4, 8); 117 lcd_clearrect (xpos, ypos, 4, 8);
122#elif defined(SIMULATOR)
123 /* player simulator in action */
124 lcd_clearrect (x*6, 12+y*16, 4, 8);
125#else 118#else
126 lcd_putc(x, y, ' '); 119 lcd_putc(x, y, ' ');
127#endif 120#endif