summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMarc Guay <marcguay@rockbox.org>2008-06-26 03:05:24 +0000
committerMarc Guay <marcguay@rockbox.org>2008-06-26 03:05:24 +0000
commit8ca67db93921f78a5ec12befb17746cc490196f3 (patch)
treec83b3fcce72f25f2b61bd746a4c641306b84bfcf /apps
parent37f37394c3dcbdc87c1f7e1c62e61eaf745e6ba2 (diff)
downloadrockbox-8ca67db93921f78a5ec12befb17746cc490196f3.tar.gz
rockbox-8ca67db93921f78a5ec12befb17746cc490196f3.zip
Add the Random Folder Advance feature to the manual, along with the plugin random_folder_advance_config, and a tiny bug fix in the plugin itself. Closes FS#7677.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17801 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/plugins/random_folder_advance_config.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/plugins/random_folder_advance_config.c b/apps/plugins/random_folder_advance_config.c
index 4df764285f..388d17de2f 100644
--- a/apps/plugins/random_folder_advance_config.c
+++ b/apps/plugins/random_folder_advance_config.c
@@ -315,9 +315,11 @@ void edit_list(void)
315 switch (button) 315 switch (button)
316 { 316 {
317 case ACTION_STD_OK: 317 case ACTION_STD_OK:
318 {
318 list->folder[selection][0] = ' '; 319 list->folder[selection][0] = ' ';
319 list->folder[selection][1] = '\0'; 320 list->folder[selection][1] = '\0';
320 break; 321 break;
322 }
321 case ACTION_STD_CONTEXT: 323 case ACTION_STD_CONTEXT:
322 { 324 {
323 int m, len; 325 int m, len;
@@ -348,7 +350,7 @@ void edit_list(void)
348 } 350 }
349 } 351 }
350 } 352 }
351 break; 353 break;
352 } 354 }
353 menu_exit(m); 355 menu_exit(m);
354 } 356 }
@@ -372,7 +374,7 @@ void edit_list(void)
372 } 374 }
373 menu_exit(m); 375 menu_exit(m);
374 } 376 }
375 break; 377 break;
376 } 378 }
377 } 379 }
378} 380}