summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/menu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/menu.c b/apps/menu.c
index 9ffdb92993..06034bd4d1 100644
--- a/apps/menu.c
+++ b/apps/menu.c
@@ -62,7 +62,7 @@ void put_cursorxy(int x, int y, bool on)
62#elif defined(SIMULATOR) 62#elif defined(SIMULATOR)
63 /* player simulator */ 63 /* player simulator */
64 unsigned char cursor[] = { 0x7f, 0x3e, 0x1c, 0x08 }; 64 unsigned char cursor[] = { 0x7f, 0x3e, 0x1c, 0x08 };
65 lcd_bitmap ( cursor, x*6, 8+y*8, 4, 8, true); 65 lcd_bitmap ( cursor, x*6, 12+y*16, 4, 8, true);
66#else 66#else
67 lcd_puts(x, y, CURSOR_CHAR); 67 lcd_puts(x, y, CURSOR_CHAR);
68#endif 68#endif
@@ -73,7 +73,7 @@ void put_cursorxy(int x, int y, bool on)
73 lcd_clearrect (x*6, y*8, 4, 8); 73 lcd_clearrect (x*6, y*8, 4, 8);
74#elif defined(SIMULATOR) 74#elif defined(SIMULATOR)
75 /* player simulator in action */ 75 /* player simulator in action */
76 lcd_clearrect (x*6, 8+y*8, 4, 8); 76 lcd_clearrect (x*6, 12+y*16, 4, 8);
77#else 77#else
78 lcd_puts(x, y, " "); 78 lcd_puts(x, y, " ");
79#endif 79#endif