summaryrefslogtreecommitdiff
path: root/apps/main_menu.c
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2004-01-21 14:58:40 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2004-01-21 14:58:40 +0000
commitef7293f0bc336beb30f3a5f2eafad4a447f60ac5 (patch)
tree68b02b0278b25a10a261d8813bbf5be39e1a51b6 /apps/main_menu.c
parent33acdef9db5ffa2c6f93dc07d0400c7a72a0f25e (diff)
downloadrockbox-ef7293f0bc336beb30f3a5f2eafad4a447f60ac5.tar.gz
rockbox-ef7293f0bc336beb30f3a5f2eafad4a447f60ac5.zip
New feature: NOw you can store the recorded files in either /recordings (the directory will be created automatically) or in the current directory.
New feature: A "Create directory" menu option (untested in the simulator). Bug fix: The ON+Play menu could do nasty things if you pressed ON+Play in an empty dir. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4268 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/main_menu.c')
-rw-r--r--apps/main_menu.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/main_menu.c b/apps/main_menu.c
index 23af8d7817..b6d73ab6f2 100644
--- a/apps/main_menu.c
+++ b/apps/main_menu.c
@@ -304,7 +304,7 @@ bool main_menu(void)
304 int i = 0; 304 int i = 0;
305 305
306 /* main menu */ 306 /* main menu */
307 struct menu_items items[8]; 307 struct menu_items items[9];
308 308
309 items[i].desc = str(LANG_BOOKMARK_MENU); 309 items[i].desc = str(LANG_BOOKMARK_MENU);
310 items[i++].function = bookmark_menu; 310 items[i++].function = bookmark_menu;
@@ -336,6 +336,9 @@ bool main_menu(void)
336 items[i].desc = str(LANG_INFO); 336 items[i].desc = str(LANG_INFO);
337 items[i++].function = info_menu; 337 items[i++].function = info_menu;
338 338
339 items[i].desc = str(LANG_CREATE_DIR);
340 items[i++].function = create_dir;
341
339 m=menu_init( items, i ); 342 m=menu_init( items, i );
340#ifdef HAVE_LCD_CHARCELLS 343#ifdef HAVE_LCD_CHARCELLS
341 status_set_param(true); 344 status_set_param(true);