summaryrefslogtreecommitdiff
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
parenta2f9fb6a33d1fe60d93c41f72abe9e35d0013ea4 (diff)
downloadrockbox-7cdf5c8cabcbf36affb1e5768bacb9823c204a2e.tar.gz
rockbox-7cdf5c8cabcbf36affb1e5768bacb9823c204a2e.zip
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
-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