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.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/firmware/drivers/lcd-bitmap-common.c b/firmware/drivers/lcd-bitmap-common.c
index 2b309ba75a..00d317c9c8 100644
--- a/firmware/drivers/lcd-bitmap-common.c
+++ b/firmware/drivers/lcd-bitmap-common.c
@@ -624,19 +624,7 @@ void LCDFN(puts_scroll)(int x, int y, const unsigned char *string)
624void LCDFN(puts_scroll_style)(int x, int y, const unsigned char *string, 624void LCDFN(puts_scroll_style)(int x, int y, const unsigned char *string,
625 int style) 625 int style)
626{ 626{
627 LCDFN(puts_scroll_style_offset)(x, y, string, style, 0); 627 LCDFN(puts_scroll_style_xyoffset)(x, y, string, style, 0, 0);
628}
629
630void LCDFN(puts_scroll_offset)(int x, int y, const unsigned char *string,
631 int offset)
632{
633 LCDFN(puts_scroll_style_offset)(x, y, string, STYLE_DEFAULT, offset);
634}
635
636void LCDFN(puts_scroll_style_offset)(int x, int y, const unsigned char *string,
637 int style, int x_offset)
638{
639 LCDFN(puts_scroll_style_xyoffset)(x, y, string, style, x_offset, 0);
640} 628}
641 629
642#if !defined(HAVE_LCD_COLOR) || !defined(MAIN_LCD) 630#if !defined(HAVE_LCD_COLOR) || !defined(MAIN_LCD)