From 17f8390c44623955bc5b2e969b7ac1dcb788c453 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 14 Jun 2002 09:03:08 +0000 Subject: the cursor is now only 4 pixels wide git-svn-id: svn://svn.rockbox.org/rockbox/trunk@995 a1c6a512-1295-4272-9138-f99709370657 --- apps/menu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/menu.c b/apps/menu.c index c4ddd62..6ba2b8c 100644 --- a/apps/menu.c +++ b/apps/menu.c @@ -58,7 +58,7 @@ void put_cursorxy(int x, int y, bool on) if(on) { #ifdef HAVE_LCD_BITMAP lcd_bitmap ( bitmap_icons_6x8[Cursor], - x*6, y*8, 6, 8, true); + x*6, y*8, 4, 8, true); #else lcd_puts(x, y, CURSOR_CHAR); #endif @@ -66,7 +66,7 @@ void put_cursorxy(int x, int y, bool on) else { #ifdef HAVE_LCD_BITMAP /* I use xy here since it needs to disregard the margins */ - lcd_putsxy (x*6, y*8, " ", 0); + lcd_clearrect (x*6, y*6, 4, 8); #else lcd_puts(x, y, " "); #endif -- cgit v1.1