diff options
| -rw-r--r-- | apps/tree.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/tree.c b/apps/tree.c index 2d9b1bf..201906f 100644 --- a/apps/tree.c +++ b/apps/tree.c @@ -577,6 +577,11 @@ static bool dirbrowse(void) if (global_settings.rec_startup) { /* We fake being in the menu structure by calling the appropriate parent when we drop out of each screen */ +#if CONFIG_CODEC == SWCODEC + /* Put in a 1 sec pause to slow bootup or the recording codecs + won't initialize */ + sleep(HZ); +#endif recording_screen(false); rec_menu(); main_menu(); |