summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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