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.c11
1 files changed, 2 insertions, 9 deletions
diff --git a/firmware/drivers/lcd-bitmap-common.c b/firmware/drivers/lcd-bitmap-common.c
index 14c63ec471..330639fd87 100644
--- a/firmware/drivers/lcd-bitmap-common.c
+++ b/firmware/drivers/lcd-bitmap-common.c
@@ -445,7 +445,7 @@ static void LCDFN(putsxyofs_style)(int xpos, int ypos,
445 445
446/*** Line oriented text output ***/ 446/*** Line oriented text output ***/
447 447
448void LCDFN(puts_style_xyoffset)(int x, int y, const unsigned char *str, 448static void LCDFN(putsofs_style)(int x, int y, const unsigned char *str,
449 int style, int x_offset, int y_offset) 449 int style, int x_offset, int y_offset)
450{ 450{
451 int xpos, ypos, h; 451 int xpos, ypos, h;
@@ -469,7 +469,7 @@ void LCDFN(puts_style_xyoffset)(int x, int y, const unsigned char *str,
469 469
470void LCDFN(puts)(int x, int y, const unsigned char *str) 470void LCDFN(puts)(int x, int y, const unsigned char *str)
471{ 471{
472 LCDFN(puts_style_xyoffset)(x, y, str, STYLE_DEFAULT, 0, 0); 472 LCDFN(putsofs_style)(x, y, str, STYLE_DEFAULT, 0, 0);
473} 473}
474 474
475/* Formatting version of LCDFN(puts) */ 475/* Formatting version of LCDFN(puts) */
@@ -582,13 +582,6 @@ static void LCDFN(puts_scroll_worker)(int x, int y, const unsigned char *string,
582 } 582 }
583} 583}
584 584
585void LCDFN(puts_scroll_style_xyoffset)(int x, int y, const unsigned char *string,
586 int style, int x_offset, int y_offset)
587{
588 LCDFN(puts_scroll_worker)(x, y, string, style, x_offset, y_offset,
589 true, LCDFN(scroll_fn), NULL);
590}
591
592void LCDFN(putsxy_scroll_func)(int x, int y, const unsigned char *string, 585void LCDFN(putsxy_scroll_func)(int x, int y, const unsigned char *string,
593 void (*scroll_func)(struct scrollinfo *), 586 void (*scroll_func)(struct scrollinfo *),
594 void *data, int x_offset) 587 void *data, int x_offset)