summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2013-03-28 22:36:49 +1100
committerJonathan Gordon <rockbox@jdgordon.info>2013-03-29 13:41:48 +1100
commit0bcd284497cbc2d5b75d47ff91dee50150603d0c (patch)
tree4ce27070f575d47a470899bd7fc3b9fd685939eb
parent087ff2e59057cbc378ec3c2be3a9af12c7407514 (diff)
downloadrockbox-v3.13.tar.gz
rockbox-v3.13.zip
woops, revert test codev3.13
Change-Id: Ida0ef9e4d81520314d3757009d18f7b22accc1e4
-rw-r--r--apps/debug_menu.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index 3fe28fb1c9..c4291879c3 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -1838,31 +1838,6 @@ static bool dbg_save_roms(void)
}
#endif /* CPU */
-static int radio_callback(int btn, struct gui_synclist *lists)
-{
- (void)lists;
- if (btn == ACTION_STD_CANCEL)
- return btn;
- simplelist_set_line_count(1);
- simplelist_addline("test one");
- simplelist_addline("test two");
- simplelist_addline("test dsaf");
- simplelist_addline("test asdfsad");
- simplelist_addline("-------------");
- return ACTION_REDRAW;
-}
-static bool dbg_fm_radio(void)
-{
- struct simplelist_info info;
- info.scroll_all = true;
- simplelist_info_init(&info, "FM Radio", 1, NULL);
- simplelist_set_line_count(0);
- simplelist_addline("HW detected: %s", "no");
-
- info.action_callback = radio_callback;
- info.hide_selection = true;
- return simplelist_show_list(&info);
-}
#ifndef SIMULATOR
#if CONFIG_TUNER
@@ -2349,7 +2324,6 @@ static const struct {
{ "FM Radio", dbg_fm_radio },
#endif
#endif
- { "TEST HERE", dbg_fm_radio},
#if defined(HAVE_EEPROM) && !defined(HAVE_EEPROM_SETTINGS)
{ "Write back EEPROM", dbg_write_eeprom },
#endif