1
0
Fork 0
forked from len0rd/rockbox

Fixed player builds

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4979 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2004-08-01 22:11:08 +00:00
parent abe77a1a2a
commit 1413f0cc95

View file

@ -302,7 +302,7 @@ void lcd_clear_display(void)
xlcd_update();
}
static void lcd_puts_cont_scroll(int x, int y, unsigned char *string)
static void lcd_puts_cont_scroll(int x, int y, const unsigned char *string)
{
bool update=false;
DEBUGF("lcd_puts_cont_scroll(%d, %d, \"", x, y);
@ -332,7 +332,7 @@ static void lcd_puts_cont_scroll(int x, int y, unsigned char *string)
lcd_update();
#endif
}
void lcd_puts(int x, int y, unsigned char *string)
void lcd_puts(int x, int y, const unsigned char *string)
{
DEBUGF("lcd_puts(%d, %d) -> ", x, y);
scroll[y].mode=SCROLL_MODE_OFF;