summaryrefslogtreecommitdiff
path: root/apps/settings.h
diff options
context:
space:
mode:
authorTorne Wuff <torne@wolfpuppy.org.uk>2010-07-05 16:39:00 +0000
committerTorne Wuff <torne@wolfpuppy.org.uk>2010-07-05 16:39:00 +0000
commitdb1b823ac3ea524d80a83876c9c99593d29f3817 (patch)
tree52a5ee873e0a35860e1134c6e254b862012fa9fd /apps/settings.h
parentd265bcf965c8b51911ed8ce8d664eb9629d8bfa0 (diff)
downloadrockbox-db1b823ac3ea524d80a83876c9c99593d29f3817.tar.gz
rockbox-db1b823ac3ea524d80a83876c9c99593d29f3817.zip
Provide the option to automatically update existing bookmark files on stop, without creating ones that don't already exist.
Idea from FS#6272, but implemented differently. If you set "Update on stop" then it will check if the bookmark file exists on stop, and if so, write a new one without prompting. If the file doesn't exist, it will do whatever the "Bookmark on stop" setting tells it to do. This works quite well if you have an audiobook/podcast/etc folder/playlist: just bookmark it manually once and it will get bookmarked automatically after that, without creating bookmarks for regular music. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27294 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.h')
-rw-r--r--apps/settings.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/settings.h b/apps/settings.h
index a324ef2dd7..d9aec8fc92 100644
--- a/apps/settings.h
+++ b/apps/settings.h
@@ -604,6 +604,7 @@ struct user_settings
604 /* auto bookmark settings */ 604 /* auto bookmark settings */
605 int autoloadbookmark; /* auto load option: 0=off, 1=ask, 2=on */ 605 int autoloadbookmark; /* auto load option: 0=off, 1=ask, 2=on */
606 int autocreatebookmark; /* auto create option: 0=off, 1=ask, 2=on */ 606 int autocreatebookmark; /* auto create option: 0=off, 1=ask, 2=on */
607 bool autoupdatebookmark;/* auto update option */
607 int usemrb; /* use MRB list: 0=No, 1=Yes*/ 608 int usemrb; /* use MRB list: 0=No, 1=Yes*/
608 609
609#ifdef HAVE_DIRCACHE 610#ifdef HAVE_DIRCACHE