summaryrefslogtreecommitdiffstats
path: root/apps/player
diff options
context:
space:
mode:
Diffstat (limited to 'apps/player')
-rw-r--r--apps/player/icons.c13
-rw-r--r--apps/player/icons.h6
2 files changed, 2 insertions, 17 deletions
diff --git a/apps/player/icons.c b/apps/player/icons.c
index 15f92bc0b0..3f9b7c1547 100644
--- a/apps/player/icons.c
+++ b/apps/player/icons.c
@@ -21,17 +21,4 @@
#ifdef HAVE_LCD_CHARCELLS
-char tree_icons_5x7[LastTreeIcon][8] =
-{
- { 0x06, 0x09, 0x09, 0x02, 0x02, 0x00, 0x02, 0x00 }, /* Unknown */
- { 0x07, 0x04, 0x07, 0x04, 0x1c, 0x1c, 0x08, 0x00 }, /* File */
- { 0x0c, 0x13, 0x11, 0x11, 0x11, 0x11, 0x1f, 0x00 }, /* Folder */
- { 0x17, 0x00, 0x17, 0x00, 0x17, 0x00, 0x17, 0x00 }, /* Playlist */
- { 0x01, 0x01, 0x02, 0x02, 0x14, 0x0c, 0x04, 0x00 }, /* WPS */
- { 0x1f, 0x11, 0x1b, 0x15, 0x1b, 0x11, 0x1f, 0x00 }, /* MOD/AJZ */
- { 0x00, 0x1f, 0x15, 0x1f, 0x15, 0x1f, 0x00, 0x00 }, /* Language */
- { 0x1f, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x1f, 0x00 }, /* Text file */
- { 0x0b, 0x10, 0x0b, 0x00, 0x1f, 0x00, 0x1f, 0x00 }, /* Config file */
-};
-
#endif
diff --git a/apps/player/icons.h b/apps/player/icons.h
index 02293d36fb..1c9c68d66c 100644
--- a/apps/player/icons.h
+++ b/apps/player/icons.h
@@ -25,10 +25,8 @@
#ifdef HAVE_LCD_CHARCELLS
enum {
- Unknown, File, Folder, Playlist, Wps, Mod_Ajz, Language, Text, Config,
- LastTreeIcon
+ Unknown=0x90,
+ Folder=0x18, Mod_Ajz, Language, File, Wps, Playlist, Text, Config
};
-extern char tree_icons_5x7[LastTreeIcon][8];
-
#endif