summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/drivers/lcd-bitmap-common.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/firmware/drivers/lcd-bitmap-common.c b/firmware/drivers/lcd-bitmap-common.c
index 5b79879d70..7a072894b2 100644
--- a/firmware/drivers/lcd-bitmap-common.c
+++ b/firmware/drivers/lcd-bitmap-common.c
@@ -82,10 +82,10 @@ static void lcd_gradient_rect(int x1, int x2, int y, unsigned h,
82 82
83struct lcd_bitmap_char 83struct lcd_bitmap_char
84{ 84{
85 bool is_rtl; 85 char is_rtl;
86 bool is_diacritic; 86 char is_diacritic;
87 int width; 87 unsigned short int width;
88 int base_width; 88 unsigned short base_width;
89}; 89};
90 90
91/* put a string at a given pixel position, skipping first ofs pixel columns */ 91/* put a string at a given pixel position, skipping first ofs pixel columns */