summaryrefslogtreecommitdiff
path: root/firmware/drivers/lcd-bitmap-common.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/lcd-bitmap-common.c')
-rw-r--r--firmware/drivers/lcd-bitmap-common.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/firmware/drivers/lcd-bitmap-common.c b/firmware/drivers/lcd-bitmap-common.c
index a95efbc1d8..14c63ec471 100644
--- a/firmware/drivers/lcd-bitmap-common.c
+++ b/firmware/drivers/lcd-bitmap-common.c
@@ -602,13 +602,8 @@ void LCDFN(putsxy_scroll_func)(int x, int y, const unsigned char *string,
602 602
603void LCDFN(puts_scroll)(int x, int y, const unsigned char *string) 603void LCDFN(puts_scroll)(int x, int y, const unsigned char *string)
604{ 604{
605 LCDFN(puts_scroll_style)(x, y, string, STYLE_DEFAULT); 605 LCDFN(puts_scroll_worker)(x, y, string, STYLE_DEFAULT, 0, 0,
606} 606 true, LCDFN(scroll_fn), NULL);
607
608void LCDFN(puts_scroll_style)(int x, int y, const unsigned char *string,
609 int style)
610{
611 LCDFN(puts_scroll_style_xyoffset)(x, y, string, style, 0, 0);
612} 607}
613 608
614#if !defined(HAVE_LCD_COLOR) || !defined(MAIN_LCD) 609#if !defined(HAVE_LCD_COLOR) || !defined(MAIN_LCD)