summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/chartables.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/chartables.c b/firmware/chartables.c
index 0ecd79f9d5..8b91f49849 100644
--- a/firmware/chartables.c
+++ b/firmware/chartables.c
@@ -4,7 +4,7 @@
4 4
5#include "config.h" 5#include "config.h"
6 6
7#ifdef HAVE_LCD_BITMAP 7#if defined(HAVE_LCD_BITMAP) || defined(SIMULATOR)
8 8
9const unsigned char char_gen_6x8[][5][1] = 9const unsigned char char_gen_6x8[][5][1] =
10{ 10{
@@ -306,4 +306,4 @@ const unsigned char char_gen_12x16[][11][2] =
306 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,
307}; 307};
308 308
309#endif /* HAVE_LCD_BITMAP */ 309#endif /* HAVE_LCD_BITMAP || SIMULATOR */