diff options
| author | Michael Giacomelli <giac2000@hotmail.com> | 2011-01-02 02:49:13 +0000 |
|---|---|---|
| committer | Michael Giacomelli <giac2000@hotmail.com> | 2011-01-02 02:49:13 +0000 |
| commit | 66e8fc0f0d05d926a90e8d9991f78b7a855eb7f3 (patch) | |
| tree | 7db19ba9c1f166c1f35e0581cd69801d7dc7e234 /apps/settings.h | |
| parent | 4048cf27a24b93e76c4262974831669e79c71da8 (diff) | |
| download | rockbox-66e8fc0f0d05d926a90e8d9991f78b7a855eb7f3.zip rockbox-66e8fc0f0d05d926a90e8d9991f78b7a855eb7f3.tar.gz rockbox-66e8fc0f0d05d926a90e8d9991f78b7a855eb7f3.tar.bz2 rockbox-66e8fc0f0d05d926a90e8d9991f78b7a855eb7f3.tar.xz | |
Commit part of FS#11748 by Michael Hohmuth. Adds support for automatically resuming any song that is not played to completion at any point later in time, regardless of how many intermediate tracks are played. This is accomplished by expanding the database to record incompletely played tracks. Currently, the feature is simply on or off, in which case all tracks automatically resume, or they do not. The remainder of patches in the task expand this feature by allowing only certain file to automatically resume, only resuming in certain circumstances, etc but are not included until we reach agreement on what should be included. Additionally, the manual will need to be updated once we agree on the available settings.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28942 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.h')
| -rw-r--r-- | apps/settings.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/settings.h b/apps/settings.h index fac2c96..4c28753 100644 --- a/apps/settings.h +++ b/apps/settings.h @@ -576,6 +576,7 @@ struct user_settings bool tagcache_ram; /* load tagcache to ram? */ #endif bool tagcache_autoupdate; /* automatically keep tagcache in sync? */ + bool autoresume_enable; /* enable autoupdate feature? */ bool runtimedb; /* runtime database active? */ #endif /* HAVE_TAGCACHE */ |