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
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue