summaryrefslogtreecommitdiff
path: root/apps/recorder
diff options
context:
space:
mode:
Diffstat (limited to 'apps/recorder')
-rw-r--r--apps/recorder/icons.c12
-rw-r--r--apps/recorder/icons.h8
2 files changed, 19 insertions, 1 deletions
diff --git a/apps/recorder/icons.c b/apps/recorder/icons.c
index ccd920ce80..50475eb8c9 100644
--- a/apps/recorder/icons.c
+++ b/apps/recorder/icons.c
@@ -22,6 +22,18 @@
22 22
23#ifdef HAVE_LCD_BITMAP 23#ifdef HAVE_LCD_BITMAP
24 24
25unsigned char slider_bar[] =
26{
27 0x38, 0x28, 0x28, 0x28, 0x28,
28 0x7c, 0x28, 0x28, 0x28, 0x28,
29 0x7c, 0x28, 0x28, 0x28, 0x28,
30 0x7c, 0x28, 0x28, 0x28, 0x28,
31 0x7c, 0x28, 0x28, 0x28, 0x28,
32 0x7c, 0x28, 0x28, 0x28, 0x28,
33 0x7c, 0x28, 0x28, 0x28, 0x28,
34 0x7c, 0x28, 0x28, 0x28, 0x28, 0x38
35};
36
25unsigned char bitmap_icons_6x8[LastIcon][6] = 37unsigned char bitmap_icons_6x8[LastIcon][6] =
26{ 38{
27 /* Box_Filled */ 39 /* Box_Filled */
diff --git a/apps/recorder/icons.h b/apps/recorder/icons.h
index 86cf54eda8..4cb40730ba 100644
--- a/apps/recorder/icons.h
+++ b/apps/recorder/icons.h
@@ -25,7 +25,7 @@
25#ifdef HAVE_LCD_BITMAP 25#ifdef HAVE_LCD_BITMAP
26 26
27enum icons_6x8 { 27enum icons_6x8 {
28 Box_Filled, Box_Empty, Slider_Horizontal, File, 28 Test, Box_Filled, Box_Empty, Slider_Horizontal, File,
29 Folder, Directory, Playlist, Repeat, 29 Folder, Directory, Playlist, Repeat,
30 Selected, Cursor, LastIcon 30 Selected, Cursor, LastIcon
31}; 31};
@@ -34,5 +34,11 @@ extern unsigned char bitmap_icons_6x8[LastIcon][6];
34 34
35extern unsigned char rockbox112x37[]; 35extern unsigned char rockbox112x37[];
36 36
37extern unsigned char slider_bar[];
38
37#endif /* End HAVE_LCD_BITMAP */ 39#endif /* End HAVE_LCD_BITMAP */
38 40
41
42
43
44