summaryrefslogtreecommitdiff
path: root/firmware/chartables.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-04-16 14:02:26 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-04-16 14:02:26 +0000
commit439b187d42f1ffa21dfb20491053b3fdd21179ec (patch)
tree12fb19bef369ea005c41bce1be787f4dc22968e4 /firmware/chartables.c
parentbde61f220627b0fac9de0da322f0354675a6ef47 (diff)
downloadrockbox-439b187d42f1ffa21dfb20491053b3fdd21179ec.tar.gz
rockbox-439b187d42f1ffa21dfb20491053b3fdd21179ec.zip
include config.h properly
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@103 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/chartables.c')
-rw-r--r--firmware/chartables.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/firmware/chartables.c b/firmware/chartables.c
index f4d64d164b..0ecd79f9d5 100644
--- a/firmware/chartables.c
+++ b/firmware/chartables.c
@@ -1,6 +1,10 @@
1// 1/*
2// Character generation tables 2 * Character generation tables
3// 3 */
4
5#include "config.h"
6
7#ifdef HAVE_LCD_BITMAP
4 8
5const unsigned char char_gen_6x8[][5][1] = 9const unsigned char char_gen_6x8[][5][1] =
6{ 10{
@@ -301,3 +305,5 @@ const unsigned char char_gen_12x16[][11][2] =
301 0x10,0x00,0x18,0x00,0x0c,0x00,0x04,0x00,0x0c,0x00,0x18,0x00,0x10,0x00,0x18,0x00,0x0c,0x00,0x04,0x00,0x00,0x00, 305 0x10,0x00,0x18,0x00,0x0c,0x00,0x04,0x00,0x0c,0x00,0x18,0x00,0x10,0x00,0x18,0x00,0x0c,0x00,0x04,0x00,0x00,0x00,
302 0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0x00,0x00, 306 0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0x00,0x00,
303}; 307};
308
309#endif /* HAVE_LCD_BITMAP */