summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Wilgus <wilgus.william@gmail.com>2024-04-02 19:43:58 -0400
committerWilliam Wilgus <wilgus.william@gmail.com>2024-04-02 19:43:58 -0400
commit15fdaa3abc62c327c1fa2117dbf2572852edc4e6 (patch)
tree0511e7f018121e41b170ea2a36459cbc4a810fb3
parent957920e9157bde1fc4c0bd3127746038679173d6 (diff)
downloadrockbox-15fdaa3abc62c327c1fa2117dbf2572852edc4e6.tar.gz
rockbox-15fdaa3abc62c327c1fa2117dbf2572852edc4e6.zip
[Fix Red] 957920e9 lcd-bitmap-common 16-bit devices
Bootloaders need lcd_ prepended as well Change-Id: Id95020bb0dd022fcc9693863a7824e959f994a0e
-rw-r--r--firmware/drivers/lcd-bitmap-common.c2
1 files changed, 1 insertions, 1 deletions
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)
561 bmp_part_fn = lcd_alpha_bitmap_part; 561 bmp_part_fn = lcd_alpha_bitmap_part;
562 else 562 else
563#endif 563#endif
564 bmp_part_fn = mono_bmp_part_helper; 564 bmp_part_fn = LCDFN(mono_bmp_part_helper);
565 565
566 /* allow utf but no diacritics or rtl lang */ 566 /* allow utf but no diacritics or rtl lang */
567 for (ucs = bidi_l2v(str, 1); *ucs; ucs++) 567 for (ucs = bidi_l2v(str, 1); *ucs; ucs++)