summaryrefslogtreecommitdiff
path: root/apps/gui/icon.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/gui/icon.h')
-rw-r--r--apps/gui/icon.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/gui/icon.h b/apps/gui/icon.h
index 1eefc4850c..14b66d3c51 100644
--- a/apps/gui/icon.h
+++ b/apps/gui/icon.h
@@ -23,9 +23,11 @@
23/* Defines a type for the icons since it's not the same thing on 23/* Defines a type for the icons since it's not the same thing on
24 * char-based displays and bitmap displays */ 24 * char-based displays and bitmap displays */
25#ifdef HAVE_LCD_BITMAP 25#ifdef HAVE_LCD_BITMAP
26 typedef const unsigned char * ICON; 26typedef const unsigned char * ICON;
27#define NOICON NULL
27#else 28#else
28 typedef short ICON; 29typedef short ICON;
30#define NOICON -1
29#endif 31#endif
30 32
31#define CURSOR_CHAR 0x92 33#define CURSOR_CHAR 0x92