summaryrefslogtreecommitdiff
path: root/apps/recorder
diff options
context:
space:
mode:
Diffstat (limited to 'apps/recorder')
-rw-r--r--apps/recorder/icons.c6
-rw-r--r--apps/recorder/icons.h2
2 files changed, 5 insertions, 3 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] =
51 { 0x00, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f }, /* Box_Filled */ 51 { 0x00, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f }, /* Box_Filled */
52 { 0x00, 0x7f, 0x41, 0x41, 0x41, 0x7f }, /* Box_Empty */ 52 { 0x00, 0x7f, 0x41, 0x41, 0x41, 0x7f }, /* Box_Empty */
53 { 0x00, 0x3e, 0x7f, 0x63, 0x7f, 0x3e }, /* Slider_Horizontal */ 53 { 0x00, 0x3e, 0x7f, 0x63, 0x7f, 0x3e }, /* Slider_Horizontal */
54 { 0x60, 0x7f, 0x03, 0x63, 0x7f, 0x00 }, /* File */ 54 { 0x60, 0x7f, 0x03, 0x33, 0x3f, 0x00 }, /* Musical note */
55 { 0x7e, 0x41, 0x41, 0x42, 0x7e, 0x00 }, /* Folder */ 55 { 0x7e, 0x41, 0x41, 0x42, 0x7e, 0x00 }, /* Folder */
56 { 0x3e, 0x26, 0x26, 0x24, 0x3c, 0x00 }, /* Directory */ 56 { 0x3e, 0x26, 0x26, 0x24, 0x3c, 0x00 }, /* Directory */
57 { 0x55, 0x00, 0x55, 0x55, 0x55, 0x55 }, /* Playlist */ 57 { 0x55, 0x00, 0x55, 0x55, 0x55, 0x55 }, /* Playlist */
@@ -65,7 +65,9 @@ unsigned char bitmap_icons_6x8[LastIcon][6] =
65 { 0x55, 0x55, 0x55, 0x55, 0x55, 0x55 }, /* Text file */ 65 { 0x55, 0x55, 0x55, 0x55, 0x55, 0x55 }, /* Text file */
66 { 0x4e, 0x51, 0x51, 0x40, 0x55, 0x55 }, /* Config file */ 66 { 0x4e, 0x51, 0x51, 0x40, 0x55, 0x55 }, /* Config file */
67 { 0x0a, 0x0a, 0x5f, 0x4e, 0x24, 0x18 }, /* Plugin file */ 67 { 0x0a, 0x0a, 0x5f, 0x4e, 0x24, 0x18 }, /* Plugin file */
68 { 0x2a, 0x7f, 0x41, 0x41, 0x7f, 0x2a }, /* UCL flash file */ 68 { 0x2a, 0x7f, 0x41, 0x41, 0x7f, 0x2a }, /* UCL flash file: chip */
69 { 0x70, 0x70, 0x7f, 0x7f, 0x70, 0x70 }, /* Chip8 game: joystick */
70 { 0x5d, 0x7f, 0x5d, 0x7f, 0x5d, 0x7f }, /* Video file: film strip */
69}; 71};
70 72
71unsigned char bitmap_icons_7x8[][7] = 73unsigned 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 {
29 Folder, Directory, Playlist, Repeat, 29 Folder, Directory, Playlist, Repeat,
30 Selected, Cursor, Wps, Mod_Ajz, 30 Selected, Cursor, Wps, Mod_Ajz,
31 Font, Language, Text, Config, 31 Font, Language, Text, Config,
32 Plugin, Flashfile, 32 Plugin, Flashfile, Chip8, Video,
33 LastIcon 33 LastIcon
34}; 34};
35 35