summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter D'Hoye <peter.dhoye@gmail.com>2007-06-25 21:19:45 +0000
committerPeter D'Hoye <peter.dhoye@gmail.com>2007-06-25 21:19:45 +0000
commite50cba942f50d5f9fd68ac216760a014bc9ecbed (patch)
tree4fb858ec334bc05b08a7a133334cb33b860a14df
parente9baf604f9763bf2a3a59581d2af582c0ce9b826 (diff)
downloadrockbox-e50cba942f50d5f9fd68ac216760a014bc9ecbed.zip
rockbox-e50cba942f50d5f9fd68ac216760a014bc9ecbed.tar.gz
rockbox-e50cba942f50d5f9fd68ac216760a014bc9ecbed.tar.bz2
rockbox-e50cba942f50d5f9fd68ac216760a014bc9ecbed.tar.xz
Give recording related menu entries a recording icon (settings and radio menus). FS #7302 with small addition by me.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13718 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/menus/recording_menu.c2
-rw-r--r--apps/recorder/radio.c4
-rw-r--r--docs/CREDITS1
3 files changed, 4 insertions, 3 deletions
diff --git a/apps/menus/recording_menu.c b/apps/menus/recording_menu.c
index 50b49c9..56afe61 100644
--- a/apps/menus/recording_menu.c
+++ b/apps/menus/recording_menu.c
@@ -853,4 +853,4 @@ bool recording_menu(bool no_source)
};
MENUITEM_FUNCTION(recording_settings, MENU_FUNC_USEPARAM, ID2P(LANG_RECORDING_SETTINGS),
- (int (*)(void*))recording_menu, 0, NULL, Icon_NOICON);
+ (int (*)(void*))recording_menu, 0, NULL, Icon_Recording);
diff --git a/apps/recorder/radio.c b/apps/recorder/radio.c
index 23e820e..1d28d6e 100644
--- a/apps/recorder/radio.c
+++ b/apps/recorder/radio.c
@@ -1496,11 +1496,11 @@ static int fm_recording_settings(void)
#ifdef FM_RECORDING_SCREEN
MENUITEM_FUNCTION(recscreen_item, 0, ID2P(LANG_RECORDING_MENU),
- fm_recording_screen, NULL, NULL, Icon_NOICON);
+ fm_recording_screen, NULL, NULL, Icon_Recording);
#endif
#ifdef FM_RECORDING_SETTINGS
MENUITEM_FUNCTION(recsettings_item, 0, ID2P(LANG_RECORDING_SETTINGS),
- fm_recording_settings, NULL, NULL, Icon_NOICON);
+ fm_recording_settings, NULL, NULL, Icon_Recording);
#endif
#ifndef FM_PRESET
MENUITEM_FUNCTION(radio_presets_item, 0, ID2P(LANG_FM_BUTTONBAR_PRESETS),
diff --git a/docs/CREDITS b/docs/CREDITS
index b680602..c61937a 100644
--- a/docs/CREDITS
+++ b/docs/CREDITS
@@ -299,6 +299,7 @@ Alex Gerchanovsky
Gerhard Dirschl
Ivan Zupan
Alexander Papst
+Christoph Reiter
The libmad team
The wavpack team
The ffmpeg team