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.tar.gz
rockbox-c33a4a161f96e16898fc1f17b78fc62a521ea69b.zip
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 6101f4c4e6..20f4c00d59 100644
--- a/apps/main_menu.c
+++ b/apps/main_menu.c
@@ -275,6 +275,13 @@ static bool plugin_browse(void)
275} 275}
276 276
277#ifdef HAVE_RECORDING 277#ifdef HAVE_RECORDING
278#ifdef SIMULATOR
279bool recording_screen(void)
280{
281 /* a dummy */
282}
283#endif
284
278static bool recording_settings(void) 285static bool recording_settings(void)
279{ 286{
280 return recording_menu(false); 287 return recording_menu(false);
@@ -350,7 +357,7 @@ bool main_menu(void)
350 } 357 }
351#endif 358#endif
352 359
353#if CONFIG_HWCODEC == MAS3587F 360#ifdef HAVE_RECORDING
354 items[i].desc = ID2P(LANG_RECORDING); 361 items[i].desc = ID2P(LANG_RECORDING);
355 items[i++].function = rec_menu; 362 items[i++].function = rec_menu;
356#endif 363#endif