summaryrefslogtreecommitdiff
path: root/firmware/export/lcd.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/lcd.h')
-rw-r--r--firmware/export/lcd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/export/lcd.h b/firmware/export/lcd.h
index 87476d9dda..386ac5a8bf 100644
--- a/firmware/export/lcd.h
+++ b/firmware/export/lcd.h
@@ -179,8 +179,8 @@ extern void lcd_putsxy_style_offset(int x, int y, const unsigned char *str,
179extern void lcd_puts(int x, int y, const unsigned char *string); 179extern void lcd_puts(int x, int y, const unsigned char *string);
180extern void lcd_putsf(int x, int y, const unsigned char *fmt, ...); 180extern void lcd_putsf(int x, int y, const unsigned char *fmt, ...);
181extern void lcd_putc(int x, int y, unsigned long ucs); 181extern void lcd_putc(int x, int y, unsigned long ucs);
182extern void lcd_puts_scroll(int x, int y, const unsigned char* string); 182extern bool lcd_puts_scroll(int x, int y, const unsigned char* string);
183extern void lcd_putsxy_scroll_func(int x, int y, const unsigned char *string, 183extern bool lcd_putsxy_scroll_func(int x, int y, const unsigned char *string,
184 void (*scroll_func)(struct scrollinfo *), 184 void (*scroll_func)(struct scrollinfo *),
185 void *data, int x_offset); 185 void *data, int x_offset);
186 186