forked from len0rd/rockbox
Fix return value for playlist_get_resume_info
(Only) bookmark_is_bookmarkable_state() seems to require a return value atm. Change-Id: I701031285aad80a46ebca747d06f15d968c0e9c7
This commit is contained in:
parent
96dd251571
commit
3f3e185460
1 changed files with 1 additions and 3 deletions
|
@ -2278,9 +2278,7 @@ int playlist_get_resume_info(int *resume_index)
|
||||||
{
|
{
|
||||||
struct playlist_info* playlist = ¤t_playlist;
|
struct playlist_info* playlist = ¤t_playlist;
|
||||||
|
|
||||||
*resume_index = playlist->index;
|
return (*resume_index = playlist->index);
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* returns shuffle seed of playlist */
|
/* returns shuffle seed of playlist */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue