diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2002-05-04 12:13:58 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2002-05-04 12:13:58 +0000 |
| commit | 9b79d0b96645901ac76a6c52f249dff0e85c14ff (patch) | |
| tree | b2bc66872755838224c025aad39860cf1348da99 /firmware/chartables.c | |
| parent | c8397f55e50956b2112d6c035c6e67fcf365c8ba (diff) | |
| download | rockbox-9b79d0b96645901ac76a6c52f249dff0e85c14ff.zip rockbox-9b79d0b96645901ac76a6c52f249dff0e85c14ff.tar.gz rockbox-9b79d0b96645901ac76a6c52f249dff0e85c14ff.tar.bz2 rockbox-9b79d0b96645901ac76a6c52f249dff0e85c14ff.tar.xz | |
get the chartables even for non-bitmap displays when we simulate
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@418 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/chartables.c')
| -rw-r--r-- | firmware/chartables.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/chartables.c b/firmware/chartables.c index 0ecd79f..8b91f49 100644 --- a/firmware/chartables.c +++ b/firmware/chartables.c @@ -4,7 +4,7 @@ #include "config.h" -#ifdef HAVE_LCD_BITMAP +#if defined(HAVE_LCD_BITMAP) || defined(SIMULATOR) const unsigned char char_gen_6x8[][5][1] = { @@ -306,4 +306,4 @@ const unsigned char char_gen_12x16[][11][2] = 0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0x00,0x00, }; -#endif /* HAVE_LCD_BITMAP */ +#endif /* HAVE_LCD_BITMAP || SIMULATOR */ |