1
0
Fork 0
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:
Jonathan Gordon 2007-03-15 04:42:10 +00:00
parent 15c5d26de6
commit b35c1d8d35
4 changed files with 5 additions and 6 deletions

View file

@ -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;
}