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.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/apps/recorder/recording.c b/apps/recorder/recording.c
index 2269c57919..b39a96e60f 100644
--- a/apps/recorder/recording.c
+++ b/apps/recorder/recording.c
@@ -1722,8 +1722,16 @@ bool recording_screen(bool no_source)
1722#if CONFIG_CODEC == SWCODEC 1722#if CONFIG_CODEC == SWCODEC
1723 snprintf(buf, 32, "%s", 1723 snprintf(buf, 32, "%s",
1724 REC_QUALITY_LABEL(global_settings.rec_quality)); 1724 REC_QUALITY_LABEL(global_settings.rec_quality));
1725 for(i = 0; i < screen_update; i++) 1725 for(i = 0; i < screen_update; i++){
1726 screens[i].puts(0, filename_offset[i] + PM_HEIGHT + 6, buf); 1726#ifdef HAVE_AGC
1727 if ((global_settings.rec_source == AUDIO_SRC_MIC)
1728 || (global_settings.rec_source == AUDIO_SRC_LINEIN)
1729 || (global_settings.rec_source == AUDIO_SRC_FMRADIO))
1730 screens[i].puts(0, filename_offset[i] + PM_HEIGHT + line[i] + 2, buf);
1731 else
1732#endif
1733 screens[i].puts(0, filename_offset[i] + PM_HEIGHT + line[i] + 1, buf);
1734 }
1727#endif 1735#endif
1728 1736
1729 for(i = 0; i < screen_update; i++) 1737 for(i = 0; i < screen_update; i++)