summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/recorder/icons.c6
-rw-r--r--apps/recorder/icons.h2
-rw-r--r--apps/tree.c4
3 files changed, 7 insertions, 5 deletions
diff --git a/apps/recorder/icons.c b/apps/recorder/icons.c
index 3467d2bb3d..a68167d9ac 100644
--- a/apps/recorder/icons.c
+++ b/apps/recorder/icons.c
@@ -51,7 +51,7 @@ unsigned char bitmap_icons_6x8[LastIcon][6] =
{ 0x00, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f }, /* Box_Filled */
{ 0x00, 0x7f, 0x41, 0x41, 0x41, 0x7f }, /* Box_Empty */
{ 0x00, 0x3e, 0x7f, 0x63, 0x7f, 0x3e }, /* Slider_Horizontal */
- { 0x60, 0x7f, 0x03, 0x63, 0x7f, 0x00 }, /* File */
+ { 0x60, 0x7f, 0x03, 0x33, 0x3f, 0x00 }, /* Musical note */
{ 0x7e, 0x41, 0x41, 0x42, 0x7e, 0x00 }, /* Folder */
{ 0x3e, 0x26, 0x26, 0x24, 0x3c, 0x00 }, /* Directory */
{ 0x55, 0x00, 0x55, 0x55, 0x55, 0x55 }, /* Playlist */
@@ -65,7 +65,9 @@ unsigned char bitmap_icons_6x8[LastIcon][6] =
{ 0x55, 0x55, 0x55, 0x55, 0x55, 0x55 }, /* Text file */
{ 0x4e, 0x51, 0x51, 0x40, 0x55, 0x55 }, /* Config file */
{ 0x0a, 0x0a, 0x5f, 0x4e, 0x24, 0x18 }, /* Plugin file */
- { 0x2a, 0x7f, 0x41, 0x41, 0x7f, 0x2a }, /* UCL flash file */
+ { 0x2a, 0x7f, 0x41, 0x41, 0x7f, 0x2a }, /* UCL flash file: chip */
+ { 0x70, 0x70, 0x7f, 0x7f, 0x70, 0x70 }, /* Chip8 game: joystick */
+ { 0x5d, 0x7f, 0x5d, 0x7f, 0x5d, 0x7f }, /* Video file: film strip */
};
unsigned char bitmap_icons_7x8[][7] =
diff --git a/apps/recorder/icons.h b/apps/recorder/icons.h
index ca0c72f811..7a18cc2473 100644
--- a/apps/recorder/icons.h
+++ b/apps/recorder/icons.h
@@ -29,7 +29,7 @@ enum icons_6x8 {
Folder, Directory, Playlist, Repeat,
Selected, Cursor, Wps, Mod_Ajz,
Font, Language, Text, Config,
- Plugin, Flashfile,
+ Plugin, Flashfile, Chip8, Video,
LastIcon
};
diff --git a/apps/tree.c b/apps/tree.c
index 4002e94703..ead389f145 100644
--- a/apps/tree.c
+++ b/apps/tree.c
@@ -81,8 +81,8 @@ static struct
{ ".rock",TREE_ATTR_ROCK,Plugin },
#ifdef HAVE_LCD_BITMAP
{ ".fnt", TREE_ATTR_FONT,Font },
- { ".ch8", TREE_ATTR_CH8, -1 },
- { ".rvf", TREE_ATTR_RVF, Text },
+ { ".ch8", TREE_ATTR_CH8, Chip8 },
+ { ".rvf", TREE_ATTR_RVF, Video },
#endif
#ifndef SIMULATOR
#ifdef HAVE_LCD_BITMAP