mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
fix a fun infinite loop when follow playlist is on and you started playback from PF and stopped it inside the WPS
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26718 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
edf06dc0b2
commit
c92b2cc16a
1 changed files with 1 additions and 1 deletions
|
@ -556,7 +556,7 @@ static int load_plugin_screen(char *plug_path)
|
|||
|
||||
ret_val = plugin_load(plug_path, NULL);
|
||||
if (ret_val == PLUGIN_OK)
|
||||
ret_val = GO_TO_PREVIOUS;
|
||||
ret_val = audio_status() ? GO_TO_PREVIOUS : GO_TO_ROOT;
|
||||
if (ret_val == GO_TO_PREVIOUS)
|
||||
last_screen = (old_previous == next_screen) ? GO_TO_ROOT : old_previous;
|
||||
return ret_val;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue