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 3f9030f5ea..3ae2f5dbb9 100644
--- a/firmware/drivers/lcd-player.c
+++ b/firmware/drivers/lcd-player.c
@@ -302,7 +302,7 @@ void lcd_clear_display(void)
302 xlcd_update(); 302 xlcd_update();
303} 303}
304 304
305static void lcd_puts_cont_scroll(int x, int y, unsigned char *string) 305static void lcd_puts_cont_scroll(int x, int y, const unsigned char *string)
306{ 306{
307 bool update=false; 307 bool update=false;
308 DEBUGF("lcd_puts_cont_scroll(%d, %d, \"", x, y); 308 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)
332 lcd_update(); 332 lcd_update();
333#endif 333#endif
334} 334}
335void lcd_puts(int x, int y, unsigned char *string) 335void lcd_puts(int x, int y, const unsigned char *string)
336{ 336{
337 DEBUGF("lcd_puts(%d, %d) -> ", x, y); 337 DEBUGF("lcd_puts(%d, %d) -> ", x, y);
338 scroll[y].mode=SCROLL_MODE_OFF; 338 scroll[y].mode=SCROLL_MODE_OFF;