summaryrefslogtreecommitdiff
path: root/apps/plugins
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/plugins
parent37f37394c3dcbdc87c1f7e1c62e61eaf745e6ba2 (diff)
downloadrockbox-8ca67db93921f78a5ec12befb17746cc490196f3.zip
rockbox-8ca67db93921f78a5ec12befb17746cc490196f3.tar.gz
rockbox-8ca67db93921f78a5ec12befb17746cc490196f3.tar.bz2
rockbox-8ca67db93921f78a5ec12befb17746cc490196f3.tar.xz
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/plugins')
-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 4df7642..388d17d 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)
switch (button)
{
case ACTION_STD_OK:
+ {
list->folder[selection][0] = ' ';
list->folder[selection][1] = '\0';
break;
+ }
case ACTION_STD_CONTEXT:
{
int m, len;
@@ -348,7 +350,7 @@ void edit_list(void)
}
}
}
- break;
+ break;
}
menu_exit(m);
}
@@ -372,7 +374,7 @@ void edit_list(void)
}
menu_exit(m);
}
- break;
+ break;
}
}
}