summaryrefslogtreecommitdiff
path: root/firmware/drivers/lcd-recorder.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/lcd-recorder.c')
-rw-r--r--firmware/drivers/lcd-recorder.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/drivers/lcd-recorder.c b/firmware/drivers/lcd-recorder.c
index 42cf016f97..a8dca92b4f 100644
--- a/firmware/drivers/lcd-recorder.c
+++ b/firmware/drivers/lcd-recorder.c
@@ -784,12 +784,12 @@ void lcd_invertpixel(int x, int y)
784 INVERT_PIXEL(x,y); 784 INVERT_PIXEL(x,y);
785} 785}
786 786
787void lcd_puts_scroll(int x, int y, unsigned char *string) 787void lcd_puts_scroll(int x, int y, const unsigned char *string)
788{ 788{
789 lcd_puts_scroll_style(x, y, string, STYLE_DEFAULT); 789 lcd_puts_scroll_style(x, y, string, STYLE_DEFAULT);
790} 790}
791 791
792void lcd_puts_scroll_style(int x, int y, unsigned char *string, int style) 792void lcd_puts_scroll_style(int x, int y, const unsigned char *string, int style)
793{ 793{
794 struct scrollinfo* s; 794 struct scrollinfo* s;
795 int w, h; 795 int w, h;