diff options
author | Boris Gjenero <dreamlayers@rockbox.org> | 2011-12-14 21:45:25 +0000 |
---|---|---|
committer | Boris Gjenero <dreamlayers@rockbox.org> | 2011-12-14 21:45:25 +0000 |
commit | 8e6030c8223bfb3102048b2daccbf6a6f4e97ba2 (patch) | |
tree | 92f6769d3fbb5936e32d5fb82480b776ea6fbfb9 /apps/recorder/icons.c | |
parent | 273fbadb5537743829f9830de5247626a11aedca (diff) |
FS#12378 : Remove various unused code, and comment out some unused code and data for reference or future use.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31256 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/recorder/icons.c')
-rw-r--r-- | apps/recorder/icons.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/apps/recorder/icons.c b/apps/recorder/icons.c index e6c3926759..03a88c9fdc 100644 --- a/apps/recorder/icons.c +++ b/apps/recorder/icons.c @@ -126,20 +126,3 @@ const unsigned char bitmap_icon_disk[12] = {0x00,0x00,0x00,0x1c,0x2e,0x4f,0x77,0x79,0x3a,0x1c,0x00,0x00}; #endif -/* - * Print play mode to status bar - */ -void statusbar_icon_play_mode(int mode) -{ - lcd_mono_bitmap(bitmap_icons_7x8[mode], ICON_PLAY_MODE_X_POS, - STATUSBAR_Y_POS, ICON_PLAY_MODE_WIDTH, STATUSBAR_HEIGHT); -} - -/* - * Print shuffle mode to status bar - */ -void statusbar_icon_shuffle(void) -{ - lcd_mono_bitmap(bitmap_icons_7x8[Icon_Shuffle], ICON_SHUFFLE_X_POS, - STATUSBAR_Y_POS, ICON_SHUFFLE_WIDTH, STATUSBAR_HEIGHT); -} |