summaryrefslogtreecommitdiff
path: root/apps/menus/plugin_menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/menus/plugin_menu.c')
-rw-r--r--apps/menus/plugin_menu.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/apps/menus/plugin_menu.c b/apps/menus/plugin_menu.c
index 7edfc7acc6..cbc1ce03f2 100644
--- a/apps/menus/plugin_menu.c
+++ b/apps/menus/plugin_menu.c
@@ -93,14 +93,15 @@ static int menu_callback(int action,
93 return action; 93 return action;
94} 94}
95 95
96#define ITEM_FLAG (MENU_FUNC_USEPARAM|MENU_FUNC_CHECK_RETVAL) 96#define ITEM_FLAG (MENU_FUNC_CHECK_RETVAL)
97
98MENUITEM_FUNCTION_W_PARAM(games_item, ITEM_FLAG, ID2P(LANG_PLUGIN_GAMES),
99 plugins_menu, (void*)GAMES, NULL, Icon_Folder);
100MENUITEM_FUNCTION_W_PARAM(apps_item, ITEM_FLAG, ID2P(LANG_PLUGIN_APPS),
101 plugins_menu, (void*)APPS, NULL, Icon_Folder);
102MENUITEM_FUNCTION_W_PARAM(demos_item, ITEM_FLAG, ID2P(LANG_PLUGIN_DEMOS),
103 plugins_menu, (void*)DEMOS, NULL, Icon_Folder);
97 104
98MENUITEM_FUNCTION(games_item, ITEM_FLAG, ID2P(LANG_PLUGIN_GAMES),
99 plugins_menu, (void*)GAMES, NULL, Icon_Folder);
100MENUITEM_FUNCTION(apps_item, ITEM_FLAG, ID2P(LANG_PLUGIN_APPS),
101 plugins_menu, (void*)APPS, NULL, Icon_Folder);
102MENUITEM_FUNCTION(demos_item, ITEM_FLAG, ID2P(LANG_PLUGIN_DEMOS),
103 plugins_menu, (void*)DEMOS, NULL, Icon_Folder);
104 105
105MAKE_MENU(plugin_menu, ID2P(LANG_PLUGINS), &menu_callback, 106MAKE_MENU(plugin_menu, ID2P(LANG_PLUGINS), &menu_callback,
106 Icon_Plugin, 107 Icon_Plugin,