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, 7 insertions, 1 deletions
diff --git a/apps/recorder/icons.c b/apps/recorder/icons.c
index 440902a83a..0501a3f0c0 100644
--- a/apps/recorder/icons.c
+++ b/apps/recorder/icons.c
@@ -97,7 +97,11 @@ unsigned char bitmap_icons_7x8[][7] =
97 /* Repeat playmode */ 97 /* Repeat playmode */
98 {0x38,0x44,0x44,0x4e,0x5f,0x44,0x38}, 98 {0x38,0x44,0x44,0x4e,0x5f,0x44,0x38},
99 /* Shuffle playmode (dice) */ 99 /* Shuffle playmode (dice) */
100 {0x3e,0x41,0x51,0x41,0x45,0x41,0x3e} 100 {0x3e,0x41,0x51,0x41,0x45,0x41,0x3e},
101 /* Down-arrow */
102 {0x04,0x0c,0x1c,0x3c,0x1c,0x0c,0x04},
103 /* Up-arrow */
104 {0x20,0x30,0x38,0x3c,0x38,0x30,0x20},
101}; 105};
102 106
103unsigned char rockbox112x37[]={ 107unsigned char rockbox112x37[]={
diff --git a/apps/recorder/icons.h b/apps/recorder/icons.h
index 46b7c3d2d9..3102093898 100644
--- a/apps/recorder/icons.h
+++ b/apps/recorder/icons.h
@@ -50,6 +50,8 @@ enum icons_7x8 {
50 Icon_Normal, 50 Icon_Normal,
51 Icon_Repeat, 51 Icon_Repeat,
52 Icon_Shuffle, 52 Icon_Shuffle,
53 Icon_DownArrow,
54 Icon_UpArrow,
53 Icon_Last 55 Icon_Last
54}; 56};
55 57