summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-08-09 09:13:00 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-08-09 09:13:00 +0000
commit7cdf5c8cabcbf36affb1e5768bacb9823c204a2e (patch)
treef9f3a1d28228c9baf82be459f185bf610651b054 /apps
parenta2f9fb6a33d1fe60d93c41f72abe9e35d0013ea4 (diff)
downloadrockbox-7cdf5c8cabcbf36affb1e5768bacb9823c204a2e.zip
rockbox-7cdf5c8cabcbf36affb1e5768bacb9823c204a2e.tar.gz
rockbox-7cdf5c8cabcbf36affb1e5768bacb9823c204a2e.tar.bz2
rockbox-7cdf5c8cabcbf36affb1e5768bacb9823c204a2e.tar.xz
player sim uses big font now, adjust the cursor routine
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1634 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/menu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/menu.c b/apps/menu.c
index 9ffdb92..06034bd 100644
--- a/apps/menu.c
+++ b/apps/menu.c
@@ -62,7 +62,7 @@ void put_cursorxy(int x, int y, bool on)
#elif defined(SIMULATOR)
/* player simulator */
unsigned char cursor[] = { 0x7f, 0x3e, 0x1c, 0x08 };
- lcd_bitmap ( cursor, x*6, 8+y*8, 4, 8, true);
+ lcd_bitmap ( cursor, x*6, 12+y*16, 4, 8, true);
#else
lcd_puts(x, y, CURSOR_CHAR);
#endif
@@ -73,7 +73,7 @@ void put_cursorxy(int x, int y, bool on)
lcd_clearrect (x*6, y*8, 4, 8);
#elif defined(SIMULATOR)
/* player simulator in action */
- lcd_clearrect (x*6, 8+y*8, 4, 8);
+ lcd_clearrect (x*6, 12+y*16, 4, 8);
#else
lcd_puts(x, y, " ");
#endif