From 15fdaa3abc62c327c1fa2117dbf2572852edc4e6 Mon Sep 17 00:00:00 2001 From: William Wilgus Date: Tue, 2 Apr 2024 19:43:58 -0400 Subject: [Fix Red] 957920e9 lcd-bitmap-common 16-bit devices Bootloaders need lcd_ prepended as well Change-Id: Id95020bb0dd022fcc9693863a7824e959f994a0e --- firmware/drivers/lcd-bitmap-common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/drivers/lcd-bitmap-common.c b/firmware/drivers/lcd-bitmap-common.c index 5c2c23a9cf..3200d2dd1a 100644 --- a/firmware/drivers/lcd-bitmap-common.c +++ b/firmware/drivers/lcd-bitmap-common.c @@ -561,7 +561,7 @@ static void LCDFN(putsxyofs)(int x, int y, int ofs, const unsigned char *str) bmp_part_fn = lcd_alpha_bitmap_part; else #endif - bmp_part_fn = mono_bmp_part_helper; + bmp_part_fn = LCDFN(mono_bmp_part_helper); /* allow utf but no diacritics or rtl lang */ for (ucs = bidi_l2v(str, 1); *ucs; ucs++) -- cgit v1.2.3