summaryrefslogtreecommitdiff
path: root/apps/player
diff options
context:
space:
mode:
Diffstat (limited to 'apps/player')
-rw-r--r--apps/player/icons.c4
-rw-r--r--apps/player/icons.h2
2 files changed, 4 insertions, 2 deletions
diff --git a/apps/player/icons.c b/apps/player/icons.c
index d5a71bad0f..15f92bc0b0 100644
--- a/apps/player/icons.c
+++ b/apps/player/icons.c
@@ -29,7 +29,9 @@ char tree_icons_5x7[LastTreeIcon][8] =
29 { 0x17, 0x00, 0x17, 0x00, 0x17, 0x00, 0x17, 0x00 }, /* Playlist */ 29 { 0x17, 0x00, 0x17, 0x00, 0x17, 0x00, 0x17, 0x00 }, /* Playlist */
30 { 0x01, 0x01, 0x02, 0x02, 0x14, 0x0c, 0x04, 0x00 }, /* WPS */ 30 { 0x01, 0x01, 0x02, 0x02, 0x14, 0x0c, 0x04, 0x00 }, /* WPS */
31 { 0x1f, 0x11, 0x1b, 0x15, 0x1b, 0x11, 0x1f, 0x00 }, /* MOD/AJZ */ 31 { 0x1f, 0x11, 0x1b, 0x15, 0x1b, 0x11, 0x1f, 0x00 }, /* MOD/AJZ */
32 { 0x00, 0x1f, 0x15, 0x1f, 0x15, 0x1f, 0x00, 0x00 } /* Language */ 32 { 0x00, 0x1f, 0x15, 0x1f, 0x15, 0x1f, 0x00, 0x00 }, /* Language */
33 { 0x1f, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x1f, 0x00 }, /* Text file */
34 { 0x0b, 0x10, 0x0b, 0x00, 0x1f, 0x00, 0x1f, 0x00 }, /* Config file */
33}; 35};
34 36
35#endif 37#endif
diff --git a/apps/player/icons.h b/apps/player/icons.h
index f896283eb1..02293d36fb 100644
--- a/apps/player/icons.h
+++ b/apps/player/icons.h
@@ -25,7 +25,7 @@
25#ifdef HAVE_LCD_CHARCELLS 25#ifdef HAVE_LCD_CHARCELLS
26 26
27enum { 27enum {
28 Unknown, File, Folder, Playlist, Wps, Mod_Ajz, Language, 28 Unknown, File, Folder, Playlist, Wps, Mod_Ajz, Language, Text, Config,
29 LastTreeIcon 29 LastTreeIcon
30}; 30};
31 31