diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2004-03-11 10:43:53 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2004-03-11 10:43:53 +0000 |
| commit | 642cce2e338cc6ff772c827e825205bddbc2d9be (patch) | |
| tree | bec2fdab7b207a6fabc175f353087c83e681a223 /apps/main_menu.c | |
| parent | 5c8e82e097272d46caf139eda5bab58d2cbac9a0 (diff) | |
| download | rockbox-642cce2e338cc6ff772c827e825205bddbc2d9be.zip rockbox-642cce2e338cc6ff772c827e825205bddbc2d9be.tar.gz rockbox-642cce2e338cc6ff772c827e825205bddbc2d9be.tar.bz2 rockbox-642cce2e338cc6ff772c827e825205bddbc2d9be.tar.xz | |
Moved Create Directory to the ON+Play menu
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4360 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/main_menu.c')
| -rw-r--r-- | apps/main_menu.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/apps/main_menu.c b/apps/main_menu.c index b6d73ab..23af8d7 100644 --- a/apps/main_menu.c +++ b/apps/main_menu.c @@ -304,7 +304,7 @@ bool main_menu(void) int i = 0; /* main menu */ - struct menu_items items[9]; + struct menu_items items[8]; items[i].desc = str(LANG_BOOKMARK_MENU); items[i++].function = bookmark_menu; @@ -336,9 +336,6 @@ bool main_menu(void) items[i].desc = str(LANG_INFO); items[i++].function = info_menu; - items[i].desc = str(LANG_CREATE_DIR); - items[i++].function = create_dir; - m=menu_init( items, i ); #ifdef HAVE_LCD_CHARCELLS status_set_param(true); |