diff options
| author | Kevin Ferrare <kevin@rockbox.org> | 2005-11-03 11:56:21 +0000 |
|---|---|---|
| committer | Kevin Ferrare <kevin@rockbox.org> | 2005-11-03 11:56:21 +0000 |
| commit | c43822d1027db7a12f37c822d77e6fe644fab0de (patch) | |
| tree | 5a7d0c06b4172fe2ab7eb2e28c536a78935e02e5 /apps/menu.h | |
| parent | e4ca732722fb0725ff3d35f20252d571a4228261 (diff) | |
| download | rockbox-c43822d1027db7a12f37c822d77e6fe644fab0de.zip rockbox-c43822d1027db7a12f37c822d77e6fe644fab0de.tar.gz rockbox-c43822d1027db7a12f37c822d77e6fe644fab0de.tar.bz2 rockbox-c43822d1027db7a12f37c822d77e6fe644fab0de.tar.xz | |
Fixed a bug whith the multi-screen menus : when entering / leaving a menu, the selected item was not voiced
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7739 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/menu.h')
| -rw-r--r-- | apps/menu.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/menu.h b/apps/menu.h index 08cd70f..c163e35 100644 --- a/apps/menu.h +++ b/apps/menu.h @@ -96,5 +96,6 @@ bool menu_movedown(int menu); void menu_draw(int menu); void menu_insert(int menu, int position, char *desc, bool (*function) (void)); void menu_set_cursor(int menu, int position); +void menu_talk_selected(int m); #endif /* End __MENU_H__ */ |