From 73336e9729df94c97838522440e39cbaaa1e7b00 Mon Sep 17 00:00:00 2001 From: Jonathan Gordon Date: Thu, 2 Aug 2007 12:13:20 +0000 Subject: Finally use the rec button to get to the rec screen on sansa and iriver hxxx. hold rec to get there... short press still is unused git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14141 a1c6a512-1295-4272-9138-f99709370657 --- apps/menu.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'apps/menu.c') diff --git a/apps/menu.c b/apps/menu.c index 60f2424cae..0b6be4c706 100644 --- a/apps/menu.c +++ b/apps/menu.c @@ -340,6 +340,14 @@ int do_menu(const struct menu_item_ex *start_menu, int *start_selected) continue; } +#ifdef HAVE_RECORDING + if (action == ACTION_STD_REC) + { + ret = GO_TO_RECSCREEN; + done = true; + } + else +#endif if (action == ACTION_TREE_WPS) { ret = GO_TO_PREVIOUS_MUSIC; -- cgit