summaryrefslogtreecommitdiff
path: root/firmware/export/lcd-charcell.h
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2007-03-29 17:48:26 +0000
committerJens Arnold <amiconn@rockbox.org>2007-03-29 17:48:26 +0000
commit10a5d0e00349e5b4fddabf0e9abc50f71f004b75 (patch)
treebff6c033a3d9806df59ab2a4c60b1b122cfa8da5 /firmware/export/lcd-charcell.h
parentf267e04a698f72fde5c7713ba9078c3ccb78c008 (diff)
downloadrockbox-10a5d0e00349e5b4fddabf0e9abc50f71f004b75.tar.gz
rockbox-10a5d0e00349e5b4fddabf0e9abc50f71f004b75.zip
Player: Save a bit of space by only using 7 bytes/char in the glyph table.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12962 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/lcd-charcell.h')
-rw-r--r--firmware/export/lcd-charcell.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/export/lcd-charcell.h b/firmware/export/lcd-charcell.h
index 2676056e63..9a93cf19de 100644
--- a/firmware/export/lcd-charcell.h
+++ b/firmware/export/lcd-charcell.h
@@ -35,7 +35,7 @@ extern int hw_pattern_count; /* actual number of user-definable hw patterns */
35 35
36extern const struct xchar_info *xchar_info; 36extern const struct xchar_info *xchar_info;
37extern int xchar_info_size; /* number of entries */ 37extern int xchar_info_size; /* number of entries */
38extern const unsigned char xfont_fixed[][8]; 38extern const unsigned char xfont_fixed[][HW_PATTERN_SIZE];
39 39
40void lcd_charset_init(void); 40void lcd_charset_init(void);
41 41