summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-06-14 09:03:08 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-06-14 09:03:08 +0000
commit17f8390c44623955bc5b2e969b7ac1dcb788c453 (patch)
treeca77b9ecca2b5c9c7f651e906c1806836770112d /apps
parentc72061ea0b8c3a2ede46a94acccf99e28c05200a (diff)
downloadrockbox-17f8390c44623955bc5b2e969b7ac1dcb788c453.tar.gz
rockbox-17f8390c44623955bc5b2e969b7ac1dcb788c453.zip
the cursor is now only 4 pixels wide
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@995 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 c4ddd62db5..6ba2b8c80f 100644
--- a/apps/menu.c
+++ b/apps/menu.c
@@ -58,7 +58,7 @@ void put_cursorxy(int x, int y, bool on)
58 if(on) { 58 if(on) {
59#ifdef HAVE_LCD_BITMAP 59#ifdef HAVE_LCD_BITMAP
60 lcd_bitmap ( bitmap_icons_6x8[Cursor], 60 lcd_bitmap ( bitmap_icons_6x8[Cursor],
61 x*6, y*8, 6, 8, true); 61 x*6, y*8, 4, 8, true);
62#else 62#else
63 lcd_puts(x, y, CURSOR_CHAR); 63 lcd_puts(x, y, CURSOR_CHAR);
64#endif 64#endif
@@ -66,7 +66,7 @@ void put_cursorxy(int x, int y, bool on)
66 else { 66 else {
67#ifdef HAVE_LCD_BITMAP 67#ifdef HAVE_LCD_BITMAP
68 /* I use xy here since it needs to disregard the margins */ 68 /* I use xy here since it needs to disregard the margins */
69 lcd_putsxy (x*6, y*8, " ", 0); 69 lcd_clearrect (x*6, y*6, 4, 8);
70#else 70#else
71 lcd_puts(x, y, " "); 71 lcd_puts(x, y, " ");
72#endif 72#endif