mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
dynamic playlist erase warning: skip for finished playlists
Change-Id: I9d209a011024e658ffc4da0a723ae8f9ec407702
This commit is contained in:
parent
a8540390c2
commit
3389a08d56
1 changed files with 2 additions and 1 deletions
|
@ -187,7 +187,8 @@ char *output_dyn_value(char *buf,
|
|||
* returns true if the playlist should be replaced */
|
||||
bool warn_on_pl_erase(void)
|
||||
{
|
||||
if (global_settings.warnon_erase_dynplaylist &&
|
||||
if (global_status.resume_index != -1 &&
|
||||
global_settings.warnon_erase_dynplaylist &&
|
||||
!global_settings.party_mode &&
|
||||
playlist_modified(NULL))
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue