diff options
Diffstat (limited to 'apps/tree.c')
-rw-r--r-- | apps/tree.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/tree.c b/apps/tree.c index b9b257e093..2cbc8acf1d 100644 --- a/apps/tree.c +++ b/apps/tree.c @@ -1105,6 +1105,8 @@ bool bookmark_play(char *resume_file, int index, unsigned long elapsed, { if (global_settings.playlist_shuffle) playlist_shuffle(seed, -1); + + playlist_set_modified(NULL, false); playlist_start(index, elapsed, offset); started = true; } @@ -1156,6 +1158,8 @@ bool bookmark_play(char *resume_file, int index, unsigned long elapsed, else return false; } + + playlist_set_modified(NULL, false); playlist_start(index, elapsed, offset); started = true; } |