summaryrefslogtreecommitdiffstats
path: root/firmware
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2007-04-04 00:16:11 +0000
committerJens Arnold <amiconn@rockbox.org>2007-04-04 00:16:11 +0000
commit5a6968918800d64062fa03deae530886aaa42db7 (patch)
tree6055ceb960b2caf179268e4ed27e3fd59731934d /firmware
parent61350bf91cbe18c5a6d390c1d0140326031703e1 (diff)
downloadrockbox-5a6968918800d64062fa03deae530886aaa42db7.tar.gz
rockbox-5a6968918800d64062fa03deae530886aaa42db7.zip
Replace obsolete generate_rocklatin tool with player_unifont tool.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13014 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/drivers/lcd-charset-player.c4
-rw-r--r--firmware/export/lcd-charcell.h2
2 files changed, 4 insertions, 2 deletions
diff --git a/firmware/drivers/lcd-charset-player.c b/firmware/drivers/lcd-charset-player.c
index 5e97f06f43..db1cd04884 100644
--- a/firmware/drivers/lcd-charset-player.c
+++ b/firmware/drivers/lcd-charset-player.c
@@ -110,7 +110,7 @@ enum {
#endif
};
-static const struct xchar_info xchar_info_newlcd[] = {
+const struct xchar_info xchar_info_newlcd[] = {
/* Standard ascii */
{ 0x20, 0, 0, 0x20 }, /* */
{ 0x21, 0, 0, 0x21 }, /* ! */
@@ -610,7 +610,7 @@ static const struct xchar_info xchar_info_newlcd[] = {
{ 0xfffd, 0, 0, 0x91 },
};
-static const struct xchar_info xchar_info_oldlcd[] = {
+const struct xchar_info xchar_info_oldlcd[] = {
/* Standard ascii */
{ 0x20, 0, 0, 0x24 }, /* */
{ 0x21, 0, 0, 0x25 }, /* ! */
diff --git a/firmware/export/lcd-charcell.h b/firmware/export/lcd-charcell.h
index 0684f9cd7b..8fc1dbba19 100644
--- a/firmware/export/lcd-charcell.h
+++ b/firmware/export/lcd-charcell.h
@@ -16,6 +16,8 @@
* KIND, either express or implied.
*
****************************************************************************/
+
+#include "config.h"
/* target dependent - to be adjusted for other charcell targets */
#define HW_PATTERN_SIZE 7 /* number of bytes per pattern */