mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
%cs (current screen) changes:
* Every top level menu item now has a different screen number * Playlist viewer and Playlist Catalogue browsers no longer share the same number git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30261 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
a668072d9e
commit
835683b442
6 changed files with 24 additions and 7 deletions
|
@ -149,13 +149,17 @@ bool bookmark_load_menu(void)
|
|||
/* ----------------------------------------------------------------------- */
|
||||
bool bookmark_mrb_load()
|
||||
{
|
||||
char* bookmark = select_bookmark(RECENT_BOOKMARK_FILE, false);
|
||||
char* bookmark;
|
||||
bool ret = false;
|
||||
|
||||
push_current_activity(ACTIVITY_BOOKMARKSLIST);
|
||||
bookmark = select_bookmark(RECENT_BOOKMARK_FILE, false);
|
||||
if (bookmark != NULL)
|
||||
{
|
||||
return play_bookmark(bookmark);
|
||||
ret = play_bookmark(bookmark);
|
||||
}
|
||||
|
||||
pop_current_activity();
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue