summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMats Lidell <matsl@rockbox.org>2002-10-11 11:07:17 +0000
committerMats Lidell <matsl@rockbox.org>2002-10-11 11:07:17 +0000
commitd21d179010d2516440a5c7fccc91533eed5e913f (patch)
tree3dcc4bdd80f9828ba309331bb19f2ca090d5e564
parent3735a15aca1c0c2649fb003f70ca6900d09a7731 (diff)
downloadrockbox-d21d179010d2516440a5c7fccc91533eed5e913f.zip
rockbox-d21d179010d2516440a5c7fccc91533eed5e913f.tar.gz
rockbox-d21d179010d2516440a5c7fccc91533eed5e913f.tar.bz2
rockbox-d21d179010d2516440a5c7fccc91533eed5e913f.tar.xz
Special case for simulator removed.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2576 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/menu.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/apps/menu.c b/apps/menu.c
index a0102c0..94fc88b 100644
--- a/apps/menu.c
+++ b/apps/menu.c
@@ -107,10 +107,6 @@ void put_cursorxy(int x, int y, bool on)
#ifdef HAVE_LCD_BITMAP
lcd_bitmap ( bitmap_icons_6x8[Cursor],
xpos, ypos, 4, 8, true);
-#elif defined(SIMULATOR)
- /* player simulator */
- unsigned char cursor[] = { 0x7f, 0x3e, 0x1c, 0x08 };
- lcd_bitmap ( cursor, x*6, 12+y*16, 4, 8, true);
#else
lcd_putc(x, y, CURSOR_CHAR);
#endif
@@ -119,9 +115,6 @@ void put_cursorxy(int x, int y, bool on)
#if defined(HAVE_LCD_BITMAP)
/* I use xy here since it needs to disregard the margins */
lcd_clearrect (xpos, ypos, 4, 8);
-#elif defined(SIMULATOR)
- /* player simulator in action */
- lcd_clearrect (x*6, 12+y*16, 4, 8);
#else
lcd_putc(x, y, ' ');
#endif