summaryrefslogtreecommitdiff
path: root/apps/settings.c
diff options
context:
space:
mode:
authorHardeep Sidhu <dyp@pobox.com>2005-06-25 04:46:25 +0000
committerHardeep Sidhu <dyp@pobox.com>2005-06-25 04:46:25 +0000
commit74d082c03892ae551cf4a72bb27af91fe8e1ed28 (patch)
tree227ede22869e6aa2e4f919a38cc3638ee0d76cfe /apps/settings.c
parent1224d578e8ef250cacc86ba3e97408446867baa6 (diff)
downloadrockbox-74d082c03892ae551cf4a72bb27af91fe8e1ed28.tar.gz
rockbox-74d082c03892ae551cf4a72bb27af91fe8e1ed28.zip
Added new shuffle repeat mode that reshuffles playlist before repeating. Also added new shuffled insert mode that randomly inserts selected track(s) somewhere between current track and end of playlist.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6861 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.c')
-rw-r--r--apps/settings.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings.c b/apps/settings.c
index 77bb4cdbf4..60e41fcfdd 100644
--- a/apps/settings.c
+++ b/apps/settings.c
@@ -203,7 +203,7 @@ static const struct bit_entry rtc_bits[] =
203 {16 | SIGNED, S_O(resume_first_index), 0, NULL, NULL }, 203 {16 | SIGNED, S_O(resume_first_index), 0, NULL, NULL },
204 {32 | SIGNED, S_O(resume_offset), -1, NULL, NULL }, 204 {32 | SIGNED, S_O(resume_offset), -1, NULL, NULL },
205 {32 | SIGNED, S_O(resume_seed), -1, NULL, NULL }, 205 {32 | SIGNED, S_O(resume_seed), -1, NULL, NULL },
206 {2, S_O(repeat_mode), REPEAT_ALL, "repeat", "off,all,one" }, 206 {2, S_O(repeat_mode), REPEAT_ALL, "repeat", "off,all,one,shuffle" },
207 /* LCD */ 207 /* LCD */
208 {6, S_O(contrast), 40, "contrast", NULL }, 208 {6, S_O(contrast), 40, "contrast", NULL },
209#ifdef CONFIG_BACKLIGHT 209#ifdef CONFIG_BACKLIGHT