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

@ -113,5 +113,5 @@ MAKE_MENU(sound_settings, ID2P(LANG_SOUND_SETTINGS), NULL, Icon_Audio,
bool sound_menu(void)
{
return do_menu(&sound_settings, 0);
return do_menu(&sound_settings, 0) == MENU_ATTACHED_USB;
}