summaryrefslogtreecommitdiff
path: root/apps/bookmark.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/bookmark.c')
-rw-r--r--apps/bookmark.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/bookmark.c b/apps/bookmark.c
index 3d8df3ec0b..b8d41c7464 100644
--- a/apps/bookmark.c
+++ b/apps/bookmark.c
@@ -166,16 +166,21 @@ bool bookmark_mrb_load()
166bool bookmark_autobookmark(bool prompt_ok) 166bool bookmark_autobookmark(bool prompt_ok)
167{ 167{
168 char* bookmark; 168 char* bookmark;
169 bool update = false;
169 if (!system_check()) 170 if (!system_check())
170 return false; 171 return false;
171 172
172 audio_pause(); /* first pause playback */ 173 audio_pause(); /* first pause playback */
174 if (global_settings.autoupdatebookmark && bookmark_exist())
175 update = true;
173 bookmark = create_bookmark(); 176 bookmark = create_bookmark();
174 /* Workaround for inability to speak when paused: all callers will 177 /* Workaround for inability to speak when paused: all callers will
175 just do audio_stop() when we return, so we can do it right 178 just do audio_stop() when we return, so we can do it right
176 away. This makes it possible to speak the "Create a Bookmark?" 179 away. This makes it possible to speak the "Create a Bookmark?"
177 prompt and the "Bookmark Created" splash. */ 180 prompt and the "Bookmark Created" splash. */
178 audio_stop(); 181 audio_stop();
182 if (update)
183 return write_bookmark(true, bookmark);
179 switch (global_settings.autocreatebookmark) 184 switch (global_settings.autocreatebookmark)
180 { 185 {
181 case BOOKMARK_YES: 186 case BOOKMARK_YES: