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:
parent
abe77a1a2a
commit
1413f0cc95
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue