summaryrefslogtreecommitdiff
path: root/firmware/export/lcd-charcell.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/lcd-charcell.h')
-rw-r--r--firmware/export/lcd-charcell.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/firmware/export/lcd-charcell.h b/firmware/export/lcd-charcell.h
index 8fc1dbba19..f37a555ba3 100644
--- a/firmware/export/lcd-charcell.h
+++ b/firmware/export/lcd-charcell.h
@@ -25,6 +25,7 @@
25 25
26struct cursor_info { 26struct cursor_info {
27 unsigned char hw_char; 27 unsigned char hw_char;
28 unsigned char subst_char;
28 bool enabled; 29 bool enabled;
29 bool visible; 30 bool visible;
30 int x; 31 int x;
@@ -47,7 +48,8 @@ struct xchar_info {
47/* track usage of user-definable characters */ 48/* track usage of user-definable characters */
48struct pattern_info { 49struct pattern_info {
49 short count; 50 short count;
50 unsigned short xchar; 51 unsigned short glyph;
52 unsigned char priority;
51 unsigned char pattern[HW_PATTERN_SIZE]; 53 unsigned char pattern[HW_PATTERN_SIZE];
52}; 54};
53 55