diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2002-10-09 23:30:40 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2002-10-09 23:30:40 +0000 |
| commit | 6e9d574b2b7fc1eecd800af4acecbecada81b2f4 (patch) | |
| tree | e0eb2fd47d16b1787a07dcb5f0cb5e2792ae16ed /apps | |
| parent | 227253cfe4ab16c9758473194271ed48bf2e28b1 (diff) | |
| download | rockbox-6e9d574b2b7fc1eecd800af4acecbecada81b2f4.zip rockbox-6e9d574b2b7fc1eecd800af4acecbecada81b2f4.tar.gz rockbox-6e9d574b2b7fc1eecd800af4acecbecada81b2f4.tar.bz2 rockbox-6e9d574b2b7fc1eecd800af4acecbecada81b2f4.tar.xz | |
Removed the 'repeat off' icon.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2553 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/recorder/icons.c | 1 | ||||
| -rw-r--r-- | apps/recorder/icons.h | 1 | ||||
| -rw-r--r-- | apps/status.c | 4 |
3 files changed, 0 insertions, 6 deletions
diff --git a/apps/recorder/icons.c b/apps/recorder/icons.c index 6988697..81de5b8 100644 --- a/apps/recorder/icons.c +++ b/apps/recorder/icons.c @@ -75,7 +75,6 @@ unsigned char bitmap_icons_7x8[][7] = {0x08,0x1c,0x3e,0x7f,0x1c,0x3e,0x7f}, /* Fast backward */ {0x1c,0x3e,0x7f,0x7f,0x7f,0x3e,0x1c}, /* Record */ {0x1c,0x3e,0x7f,0x00,0x7f,0x3e,0x1c}, /* Record pause */ - {0x08,0x08,0x08,0x08,0x3e,0x1c,0x08}, /* Normal playmode */ {0x38,0x44,0x44,0x4e,0x5f,0x44,0x38}, /* Repeat playmode */ {0x10,0x78,0x04,0x4e,0x5f,0x44,0x38}, /* Repeat-one playmode */ {0x3e,0x41,0x51,0x41,0x45,0x41,0x3e}, /* Shuffle playmode (dice) */ diff --git a/apps/recorder/icons.h b/apps/recorder/icons.h index 35b885a..c1f6d1b 100644 --- a/apps/recorder/icons.h +++ b/apps/recorder/icons.h @@ -48,7 +48,6 @@ enum icons_7x8 { Icon_FastBackward, Icon_Record, Icon_RecPause, - Icon_Normal, Icon_Repeat, Icon_RepeatOne, Icon_Shuffle, diff --git a/apps/status.c b/apps/status.c index 9ffdc62..0270d75 100644 --- a/apps/status.c +++ b/apps/status.c @@ -196,10 +196,6 @@ void status_draw(void) statusbar_icon_volume(volume); statusbar_icon_play_state(current_mode + Icon_Play); switch (global_settings.repeat_mode) { - case REPEAT_OFF: - statusbar_icon_play_mode(Icon_Normal); - break; - case REPEAT_ONE: statusbar_icon_play_mode(Icon_RepeatOne); break; |