diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2004-03-12 10:20:33 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2004-03-12 10:20:33 +0000 |
| commit | 10b92c44b3bac97e01be91409df6e7ccb94ea045 (patch) | |
| tree | 4f98b439e02091abcfe5fe977f5179a9ac86e646 /apps/recorder | |
| parent | 5c09ed38c6dc19fd03eb47971433993d7afd8605 (diff) | |
| download | rockbox-10b92c44b3bac97e01be91409df6e7ccb94ea045.zip rockbox-10b92c44b3bac97e01be91409df6e7ccb94ea045.tar.gz rockbox-10b92c44b3bac97e01be91409df6e7ccb94ea045.tar.bz2 rockbox-10b92c44b3bac97e01be91409df6e7ccb94ea045.tar.xz | |
First step towards context sensitive and configurable menus, by Brent Coutts
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4370 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/recorder')
| -rw-r--r-- | apps/recorder/radio.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/recorder/radio.c b/apps/recorder/radio.c index fdb1f1b..a9937a3 100644 --- a/apps/recorder/radio.c +++ b/apps/recorder/radio.c @@ -604,7 +604,7 @@ bool radio_preset_select(void) if(num_presets) { /* DIY menu handling, since we want to exit after selection */ - m = menu_init( menu, num_presets ); + m = menu_init( menu, num_presets, NULL ); result = menu_show(m); menu_exit(m); if (result == MENU_SELECTED_EXIT) @@ -676,7 +676,7 @@ bool radio_delete_preset(void) } /* DIY menu handling, since we want to exit after selection */ - m = menu_init( menu, num_presets ); + m = menu_init( menu, num_presets, NULL ); result = menu_show(m); menu_exit(m); if (result == MENU_SELECTED_EXIT) @@ -724,7 +724,7 @@ bool radio_menu(void) bool result; m = menu_init( radio_menu_items, - sizeof radio_menu_items / sizeof(struct menu_items) ); + sizeof radio_menu_items / sizeof(struct menu_items), NULL ); result = menu_run(m); menu_exit(m); return result; |