summaryrefslogtreecommitdiff
path: root/apps/recorder
diff options
context:
space:
mode:
Diffstat (limited to 'apps/recorder')
-rw-r--r--apps/recorder/icons.c5
-rw-r--r--apps/recorder/icons.h10
2 files changed, 7 insertions, 8 deletions
diff --git a/apps/recorder/icons.c b/apps/recorder/icons.c
index 1612fc10af..ab5abeaecc 100644
--- a/apps/recorder/icons.c
+++ b/apps/recorder/icons.c
@@ -62,14 +62,9 @@ unsigned char bitmap_icons_6x8[LastIcon][6] =
62 { 0x63, 0x7f, 0x3a, 0x7f, 0x63, 0x00 }, /* Mod or ajz file */ 62 { 0x63, 0x7f, 0x3a, 0x7f, 0x63, 0x00 }, /* Mod or ajz file */
63 { 0x60, 0x70, 0x38, 0x2c, 0x7e, 0x7e }, /* Font file */ 63 { 0x60, 0x70, 0x38, 0x2c, 0x7e, 0x7e }, /* Font file */
64 { 0x3e, 0x2a, 0x3e, 0x2a, 0x2a, 0x3e }, /* Language file */ 64 { 0x3e, 0x2a, 0x3e, 0x2a, 0x2a, 0x3e }, /* Language file */
65 { 0x55, 0x55, 0x55, 0x55, 0x55, 0x55 }, /* Text file */
66 { 0x4e, 0x51, 0x51, 0x40, 0x55, 0x55 }, /* Config file */ 65 { 0x4e, 0x51, 0x51, 0x40, 0x55, 0x55 }, /* Config file */
67 { 0x0a, 0x0a, 0x5f, 0x4e, 0x24, 0x18 }, /* Plugin file */ 66 { 0x0a, 0x0a, 0x5f, 0x4e, 0x24, 0x18 }, /* Plugin 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 */
71 { 0xff, 0x81, 0xaf, 0xaa, 0x8c, 0xf8 }, /* Bookmark file */ 67 { 0xff, 0x81, 0xaf, 0xaa, 0x8c, 0xf8 }, /* Bookmark file */
72 { 0x18, 0x24, 0x3c, 0x3c, 0x24, 0x18 }, /* JPEG: eye */
73}; 68};
74 69
75unsigned char bitmap_icons_7x8[][7] = 70unsigned char bitmap_icons_7x8[][7] =
diff --git a/apps/recorder/icons.h b/apps/recorder/icons.h
index 30f0cc1f58..3b4947aca7 100644
--- a/apps/recorder/icons.h
+++ b/apps/recorder/icons.h
@@ -16,6 +16,9 @@
16 * KIND, either express or implied. 16 * KIND, either express or implied.
17 * 17 *
18 ****************************************************************************/ 18 ****************************************************************************/
19#ifndef _ICONS_H_
20#define _ICONS_H_
21
19#include <lcd.h> 22#include <lcd.h>
20 23
21/* 24/*
@@ -28,9 +31,8 @@ enum icons_6x8 {
28 Box_Filled, Box_Empty, Slider_Horizontal, File, 31 Box_Filled, Box_Empty, Slider_Horizontal, File,
29 Folder, Directory, Playlist, Repeat, 32 Folder, Directory, Playlist, Repeat,
30 Selected, Cursor, Wps, Mod_Ajz, 33 Selected, Cursor, Wps, Mod_Ajz,
31 Font, Language, Text, Config, 34 Font, Language, Config, Plugin,
32 Plugin, Flashfile, Chip8, Video, 35 Bookmark,
33 Bookmark, Jpeg,
34 LastIcon 36 LastIcon
35}; 37};
36 38
@@ -97,3 +99,5 @@ extern void statusbar_icon_lock(void);
97extern void statusbar_time(int hour, int minute); 99extern void statusbar_time(int hour, int minute);
98#endif 100#endif
99#endif /* End HAVE_LCD_BITMAP */ 101#endif /* End HAVE_LCD_BITMAP */
102
103#endif /* _ICONS_H_ */