1
0
Fork 0
forked from len0rd/rockbox

fixed a missing unsigned

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1140 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2002-06-24 08:10:13 +00:00
parent 28e1d414b1
commit 01a264fb83

View file

@ -354,7 +354,7 @@ void lcd_clear_display(void)
lcd_write(false,lcd_ascii[' ']); 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)); lcd_write(true,LCD_CURSOR(x,y));
while (*string && x++<11) while (*string && x++<11)