forked from len0rd/rockbox
hehe, we better clear at y*8 not y*6 ;-)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@997 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
216e50b3b6
commit
698ebc8412
1 changed files with 1 additions and 1 deletions
|
@ -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_clearrect (x*6, y*6, 4, 8);
|
||||
lcd_clearrect (x*6, y*8, 4, 8);
|
||||
#else
|
||||
lcd_puts(x, y, " ");
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue