From 5599d6806d12d22b724d7967717edae07db3e08f Mon Sep 17 00:00:00 2001 From: Jonathan Gordon Date: Wed, 14 Feb 2007 06:58:30 +0000 Subject: Icons in the menus. Thanks midkay for them. Any menus which dont yet show them are not converted to the new system. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12300 a1c6a512-1295-4272-9138-f99709370657 --- apps/menus/recording_menu.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'apps/menus/recording_menu.c') diff --git a/apps/menus/recording_menu.c b/apps/menus/recording_menu.c index 84a3bc5402..0b4ba52715 100644 --- a/apps/menus/recording_menu.c +++ b/apps/menus/recording_menu.c @@ -30,12 +30,13 @@ #ifdef HAVE_RECORDING MENUITEM_FUNCTION(rec_menu_recording_screen_item, ID2P(LANG_RECORDING_MENU), - (menu_function)recording_screen, NULL); + (menu_function)recording_screen, NULL, NOICON); /* TEMP */ bool recording_menu(bool no_source); /* from apps/sound_menu.h */ MENUITEM_FUNCTION_WPARAM(recording_settings, ID2P(LANG_RECORDING_SETTINGS), - (int (*)(void*))recording_menu,0, NULL); + (int (*)(void*))recording_menu,0, NULL, NOICON); -MAKE_MENU(recording_settings_menu,ID2P(LANG_RECORDING),0, +MAKE_MENU(recording_settings_menu,ID2P(LANG_RECORDING), + 0, bitmap_icons_6x8[Icon_Recording], &rec_menu_recording_screen_item, &recording_settings); #endif -- cgit