summaryrefslogtreecommitdiff
path: root/apps/gui/icon.h
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2020-07-17 10:31:31 -0400
committerSolomon Peachy <pizza@shaftnet.org>2020-07-24 21:20:13 +0000
commit658026e6267277b27d297c481728f74d160a8481 (patch)
tree915a9d2bb48469bdd5b9127dc19a61f230721a6c /apps/gui/icon.h
parent8cb555460ff79e636a7907fb2589e16db98c8600 (diff)
downloadrockbox-658026e6267277b27d297c481728f74d160a8481.tar.gz
rockbox-658026e6267277b27d297c481728f74d160a8481.zip
[4/4] Remove HAVE_LCD_BITMAP, as it's now the only choice.
Note: I left behind lcd_bitmap in features.txt, because removing it would require considerable work in the manual and the translations. Change-Id: Ia8ca7761f610d9332a0d22a7d189775fb15ec88a
Diffstat (limited to 'apps/gui/icon.h')
-rw-r--r--apps/gui/icon.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/apps/gui/icon.h b/apps/gui/icon.h
index 88449c61ca..4165391316 100644
--- a/apps/gui/icon.h
+++ b/apps/gui/icon.h
@@ -24,11 +24,7 @@
24#include "screen_access.h" 24#include "screen_access.h"
25/* Defines a type for the icons since it's not the same thing on 25/* Defines a type for the icons since it's not the same thing on
26 * char-based displays and bitmap displays */ 26 * char-based displays and bitmap displays */
27#ifdef HAVE_LCD_BITMAP
28typedef const unsigned char * ICON; 27typedef const unsigned char * ICON;
29#else
30typedef long ICON;
31#endif
32 28
33/* Don't #ifdef icon values, or we wont be able to use the same 29/* Don't #ifdef icon values, or we wont be able to use the same
34 bmp for every target. */ 30 bmp for every target. */