mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
Bookmarks: Fix autoload return from bookmark selection
- Fix placement of parentheses from commit 780990 - Return cancel when play_bookmark fails or user declines to erase dynamic playlist after warning - Go back to Playlist Catalogue when user cancels out of screen Change-Id: Ibe8c315bdf8c6c9e696f68541b5d4d97dc0e778a
This commit is contained in:
parent
879b5dae39
commit
0550c64226
2 changed files with 4 additions and 9 deletions
|
@ -217,6 +217,8 @@ restart:
|
|||
int res = bookmark_autoload(selected_playlist);
|
||||
if (res == BOOKMARK_DO_RESUME)
|
||||
result = 0;
|
||||
else if (res == BOOKMARK_CANCEL)
|
||||
goto restart;
|
||||
else
|
||||
{
|
||||
switch (playlist_viewer_ex(selected_playlist, &most_recent_selection)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue