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 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