summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-02-04 11:19:54 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-02-04 11:19:54 +0000
commitc33a4a161f96e16898fc1f17b78fc62a521ea69b (patch)
tree687cebd61b72d3d459ea288c8a805a319b728cfc /apps
parentbf12c6a9a9dadfec5ad9e08374dedaa5e73c64a3 (diff)
downloadrockbox-c33a4a161f96e16898fc1f17b78fc62a521ea69b.zip
rockbox-c33a4a161f96e16898fc1f17b78fc62a521ea69b.tar.gz
rockbox-c33a4a161f96e16898fc1f17b78fc62a521ea69b.tar.bz2
rockbox-c33a4a161f96e16898fc1f17b78fc62a521ea69b.tar.xz
fix for the sim build
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5780 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/main_menu.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/apps/main_menu.c b/apps/main_menu.c
index 6101f4c..20f4c00 100644
--- a/apps/main_menu.c
+++ b/apps/main_menu.c
@@ -275,6 +275,13 @@ static bool plugin_browse(void)
}
#ifdef HAVE_RECORDING
+#ifdef SIMULATOR
+bool recording_screen(void)
+{
+ /* a dummy */
+}
+#endif
+
static bool recording_settings(void)
{
return recording_menu(false);
@@ -350,7 +357,7 @@ bool main_menu(void)
}
#endif
-#if CONFIG_HWCODEC == MAS3587F
+#ifdef HAVE_RECORDING
items[i].desc = ID2P(LANG_RECORDING);
items[i++].function = rec_menu;
#endif