summaryrefslogtreecommitdiff
path: root/apps/recorder/recording.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/recorder/recording.c')
-rw-r--r--apps/recorder/recording.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/recorder/recording.c b/apps/recorder/recording.c
index 3b706e1a6d..84207c77ab 100644
--- a/apps/recorder/recording.c
+++ b/apps/recorder/recording.c
@@ -889,7 +889,7 @@ bool recording_screen(bool no_source)
889 889
890#if CONFIG_CODEC == SWCODEC 890#if CONFIG_CODEC == SWCODEC
891 /* recording_menu gets messed up: so prevent manus talking */ 891 /* recording_menu gets messed up: so prevent manus talking */
892 talk_disable_menus(); 892 talk_disable(true);
893 /* audio_init_recording stops anything playing when it takes the audio 893 /* audio_init_recording stops anything playing when it takes the audio
894 buffer */ 894 buffer */
895#else 895#else
@@ -1873,8 +1873,8 @@ bool recording_screen(bool no_source)
1873 /* Go back to playback mode */ 1873 /* Go back to playback mode */
1874 rec_set_source(AUDIO_SRC_PLAYBACK, SRCF_PLAYBACK); 1874 rec_set_source(AUDIO_SRC_PLAYBACK, SRCF_PLAYBACK);
1875 1875
1876 /* restore talk_menu setting */ 1876 /* restore talking */
1877 talk_enable_menus(); 1877 talk_disable(false);
1878#else /* !SWCODEC */ 1878#else /* !SWCODEC */
1879 audio_init_playback(); 1879 audio_init_playback();
1880#endif /* CONFIG_CODEC == SWCODEC */ 1880#endif /* CONFIG_CODEC == SWCODEC */