summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/drivers/lcd-player.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/drivers/lcd-player.c b/firmware/drivers/lcd-player.c
index 3f9030f..3ae2f5d 100644
--- a/firmware/drivers/lcd-player.c
+++ b/firmware/drivers/lcd-player.c
@@ -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;