forked from len0rd/rockbox
Change anywhere where do_menu()'s return value was checked and expected
a bool to appear the same as the old API. Possibly fixes some bugs, but doubtful. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12772 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
15c5d26de6
commit
b35c1d8d35
4 changed files with 5 additions and 6 deletions
|
@ -82,5 +82,5 @@ MAKE_MENU(playlist_options, ID2P(LANG_PLAYLIST_MENU), NULL,
|
|||
|
||||
bool playlist_menu(void)
|
||||
{
|
||||
return do_menu(&playlist_options, NULL);
|
||||
return do_menu(&playlist_options, NULL) == MENU_ATTACHED_USB;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue