mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-18 09:32:40 -05:00
Fix the repeat mode menu item
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12313 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
75bf31fc0e
commit
b28585942d
1 changed files with 16 additions and 2 deletions
|
|
@ -303,8 +303,22 @@ const struct settings_list settings[] = {
|
|||
SYSTEM_SETTING(NVRAM(4),resume_first_index,0),
|
||||
SYSTEM_SETTING(NVRAM(4),resume_offset,-1),
|
||||
SYSTEM_SETTING(NVRAM(4),resume_seed,-1),
|
||||
{F_T_INT, &global_settings.repeat_mode, LANG_REPEAT, INT(REPEAT_ALL), "repeat",
|
||||
"off,all,one,shuffle,ab" , UNUSED},
|
||||
CHOICE_SETTING(0, repeat_mode, LANG_REPEAT, REPEAT_ALL, "repeat",
|
||||
"off,all,one,shuffle"
|
||||
#if (AB_REPEAT_ENABLE == 1)
|
||||
",ab"
|
||||
#endif
|
||||
, NULL,
|
||||
#if (AB_REPEAT_ENABLE == 1)
|
||||
5,
|
||||
#else
|
||||
4,
|
||||
#endif
|
||||
ID2P(LANG_OFF), ID2P(LANG_REPEAT_ALL), ID2P(LANG_REPEAT_ONE), ID2P(LANG_SHUFFLE)
|
||||
#if (AB_REPEAT_ENABLE == 1)
|
||||
,ID2P(LANG_REPEAT_AB)
|
||||
#endif
|
||||
), /* CHOICE_SETTING( repeat_mode ) */
|
||||
/* LCD */
|
||||
#ifdef HAVE_LCD_CONTRAST
|
||||
{F_T_INT|F_DEF_ISFUNC, &global_settings.contrast, LANG_CONTRAST,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue