diff options
author | Christian Soffke <christian.soffke@gmail.com> | 2021-04-01 07:55:23 +0200 |
---|---|---|
committer | Christian Soffke <christian.soffke@gmail.com> | 2021-04-01 07:57:12 +0200 |
commit | 674c07d654d3ce626dd0972b83f9e687103882e0 (patch) | |
tree | 4f7d1815089938af9ee1ff20c091b104fe898ee6 | |
parent | 89acde6af2c9d8ff4a647e7abd737b18333cad80 (diff) | |
download | rockbox-674c07d654.tar.gz rockbox-674c07d654.zip |
(Fix FS#13281) Revert "Restore playlist state as necessary before checking whether current playlist has been modified"
This reverts commit 46085c897854d145b5313c009fb70af428f0e6bd.
Change-Id: Id8540bb44b64546389d06593d8ff46588b634b53
-rw-r--r-- | apps/playlist.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/apps/playlist.c b/apps/playlist.c index 228ddcfd7e..7cd264e821 100644 --- a/apps/playlist.c +++ b/apps/playlist.c @@ -3436,11 +3436,7 @@ int playlist_sort(struct playlist_info* playlist, bool start_current) bool playlist_modified(const struct playlist_info* playlist) { if (!playlist) - { playlist = ¤t_playlist; - if (global_status.resume_index != -1 && !playlist->control_created && playlist_resume() == -1) - return false; - } if (playlist->shuffle_modified || playlist->deleted || |