fixed a missing unsigned
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1140 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
28e1d414b1
commit
01a264fb83
1 changed files with 1 additions and 1 deletions
|
@ -354,7 +354,7 @@ void lcd_clear_display(void)
|
|||
lcd_write(false,lcd_ascii[' ']);
|
||||
}
|
||||
|
||||
void lcd_puts(int x, int y, char *string)
|
||||
void lcd_puts(int x, int y, unsigned char *string)
|
||||
{
|
||||
lcd_write(true,LCD_CURSOR(x,y));
|
||||
while (*string && x++<11)
|
||||
|
|
Loading…
Reference in a new issue