summaryrefslogtreecommitdiff
path: root/apps/settings_list.c
diff options
context:
space:
mode:
authorroman.artiukhin <bahusdrive@gmail.com>2022-11-05 20:51:02 +0200
committerAidan MacDonald <amachronic@protonmail.com>2022-11-12 09:13:19 -0500
commitffe2df2e92cbdeb507a49279a85ac88cac2fbe4f (patch)
tree997ad849e34891f53ad55fa58fba437949e0aeaa /apps/settings_list.c
parent30ec10c790dd09f1eb681312093e945683ec643a (diff)
downloadrockbox-ffe2df2e92cbdeb507a49279a85ac88cac2fbe4f.tar.gz
rockbox-ffe2df2e92cbdeb507a49279a85ac88cac2fbe4f.zip
Implement Rewind across tracks functionality
Useful feature for audiobooks. To rewind from the end of the previous track - press rewind at the very beginning of the current track. So if you are in the middle of the track - first rewind till beginning then release and press rewind button again (Playback Settings -> Rewind Across Tracks option should be enabled) Fixes FS#13290 Change-Id: I5d7f06f64ad76d1e8f7827fe594ccca5f621769d
Diffstat (limited to 'apps/settings_list.c')
-rw-r--r--apps/settings_list.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings_list.c b/apps/settings_list.c
index 6d01f5c6fc..f54738163a 100644
--- a/apps/settings_list.c
+++ b/apps/settings_list.c
@@ -2061,7 +2061,7 @@ const struct settings_list settings[] = {
2061 tsc_is_changed, tsc_set_default), 2061 tsc_is_changed, tsc_set_default),
2062#endif 2062#endif
2063 OFFON_SETTING(0, prevent_skip, LANG_PREVENT_SKIPPING, false, "prevent track skip", NULL), 2063 OFFON_SETTING(0, prevent_skip, LANG_PREVENT_SKIPPING, false, "prevent track skip", NULL),
2064 2064 OFFON_SETTING(0, rewind_across_tracks, LANG_REWIND_ACROSS_TRACKS, false, "rewind across tracks", NULL),
2065#ifdef HAVE_PITCHCONTROL 2065#ifdef HAVE_PITCHCONTROL
2066 OFFON_SETTING(0, pitch_mode_semitone, LANG_SEMITONE, false, 2066 OFFON_SETTING(0, pitch_mode_semitone, LANG_SEMITONE, false,
2067 "Semitone pitch change", NULL), 2067 "Semitone pitch change", NULL),