diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-08-21 23:01:12 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-08-21 23:01:12 +0000 |
| commit | 0ad617cbf0cc85dde241345194b76b590df567a8 (patch) | |
| tree | 65931c5a10788981b17f08bca1ba83151bee2855 /apps/settings.c | |
| parent | 658c8451ead9e7d07478c903c430af9c7799f324 (diff) | |
| download | rockbox-0ad617cbf0cc85dde241345194b76b590df567a8.zip rockbox-0ad617cbf0cc85dde241345194b76b590df567a8.tar.gz rockbox-0ad617cbf0cc85dde241345194b76b590df567a8.tar.bz2 rockbox-0ad617cbf0cc85dde241345194b76b590df567a8.tar.xz | |
Patch #1105616 by Ray Lambert - A-B Repeat for Archos studio/recorder, still not 100% complete, but I wanted to commit it before the 2.5 feature freeze
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7380 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.c')
| -rw-r--r-- | apps/settings.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/settings.c b/apps/settings.c index 9bcdc55..4811ad2 100644 --- a/apps/settings.c +++ b/apps/settings.c @@ -78,7 +78,7 @@ const char rec_base_directory[] = REC_BASE_DIR; #include "pcm_playback.h" #endif -#define CONFIG_BLOCK_VERSION 24 +#define CONFIG_BLOCK_VERSION 25 #define CONFIG_BLOCK_SIZE 512 #define RTC_BLOCK_SIZE 44 @@ -205,7 +205,7 @@ static const struct bit_entry rtc_bits[] = {16 | SIGNED, S_O(resume_first_index), 0, NULL, NULL }, {32 | SIGNED, S_O(resume_offset), -1, NULL, NULL }, {32 | SIGNED, S_O(resume_seed), -1, NULL, NULL }, - {2, S_O(repeat_mode), REPEAT_ALL, "repeat", "off,all,one,shuffle" }, + {3, S_O(repeat_mode), REPEAT_ALL, "repeat", "off,all,one,shuffle,ab" }, /* LCD */ {6, S_O(contrast), 40, "contrast", NULL }, #ifdef CONFIG_BACKLIGHT |