summaryrefslogtreecommitdiff
path: root/firmware/export/lcd-charcell.h
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2007-04-06 11:20:39 +0000
committerJens Arnold <amiconn@rockbox.org>2007-04-06 11:20:39 +0000
commit60b99811eb785d67b1bd340ea38dedfa466cb8cd (patch)
tree9e4c812cfe6783aa2a6494d3d8eb821598a84cd0 /firmware/export/lcd-charcell.h
parent4303ab02a3efbd6a77e809641617c53082f9366f (diff)
downloadrockbox-60b99811eb785d67b1bd340ea38dedfa466cb8cd.tar.gz
rockbox-60b99811eb785d67b1bd340ea38dedfa466cb8cd.zip
Player: Only use one software definable character for different characters using the same glyph. * Some cleanup.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13043 a1c6a512-1295-4272-9138-f99709370657
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