summaryrefslogtreecommitdiff
path: root/firmware/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers')
-rw-r--r--firmware/drivers/lcd-bitmap-common.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/firmware/drivers/lcd-bitmap-common.c b/firmware/drivers/lcd-bitmap-common.c
index f9bc03d48e..a95efbc1d8 100644
--- a/firmware/drivers/lcd-bitmap-common.c
+++ b/firmware/drivers/lcd-bitmap-common.c
@@ -467,15 +467,9 @@ void LCDFN(puts_style_xyoffset)(int x, int y, const unsigned char *str,
467 LCDFN(putsxyofs_style)(xpos, ypos+y_offset, str, style, h, x_offset); 467 LCDFN(putsxyofs_style)(xpos, ypos+y_offset, str, style, h, x_offset);
468} 468}
469 469
470void LCDFN(puts_style_offset)(int x, int y, const unsigned char *str,
471 int style, int x_offset)
472{
473 LCDFN(puts_style_xyoffset)(x, y, str, style, x_offset, 0);
474}
475
476void LCDFN(puts)(int x, int y, const unsigned char *str) 470void LCDFN(puts)(int x, int y, const unsigned char *str)
477{ 471{
478 LCDFN(puts_style_offset)(x, y, str, STYLE_DEFAULT, 0); 472 LCDFN(puts_style_xyoffset)(x, y, str, STYLE_DEFAULT, 0, 0);
479} 473}
480 474
481/* Formatting version of LCDFN(puts) */ 475/* Formatting version of LCDFN(puts) */