1
0
Fork 0
forked from len0rd/rockbox

the cursor is now only 4 pixels wide

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@995 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2002-06-14 09:03:08 +00:00
parent c72061ea0b
commit 17f8390c44

View file

@ -58,7 +58,7 @@ void put_cursorxy(int x, int y, bool on)
if(on) { if(on) {
#ifdef HAVE_LCD_BITMAP #ifdef HAVE_LCD_BITMAP
lcd_bitmap ( bitmap_icons_6x8[Cursor], lcd_bitmap ( bitmap_icons_6x8[Cursor],
x*6, y*8, 6, 8, true); x*6, y*8, 4, 8, true);
#else #else
lcd_puts(x, y, CURSOR_CHAR); lcd_puts(x, y, CURSOR_CHAR);
#endif #endif
@ -66,7 +66,7 @@ void put_cursorxy(int x, int y, bool on)
else { else {
#ifdef HAVE_LCD_BITMAP #ifdef HAVE_LCD_BITMAP
/* I use xy here since it needs to disregard the margins */ /* 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 #else
lcd_puts(x, y, " "); lcd_puts(x, y, " ");
#endif #endif