summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Scarratt <mmmm@rockbox.org>2006-08-31 08:52:04 +0000
committerMartin Scarratt <mmmm@rockbox.org>2006-08-31 08:52:04 +0000
commit79198b92401c2153c75f0602329f98a8883dd3cd (patch)
treee5b0ce9913da94ce8ca3a0ed3faf2ef3cdce0353
parenta396d7e742d626d50f6c94e8b48efa9970fd41ac (diff)
downloadrockbox-79198b92401c2153c75f0602329f98a8883dd3cd.tar.gz
rockbox-79198b92401c2153c75f0602329f98a8883dd3cd.zip
Fix a small display issue in the FM recording mode
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10819 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/recorder/recording.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/recorder/recording.c b/apps/recorder/recording.c
index 080cafcf2f..2269c57919 100644
--- a/apps/recorder/recording.c
+++ b/apps/recorder/recording.c
@@ -1707,7 +1707,8 @@ bool recording_screen(bool no_source)
1707 for(i = 0; i < screen_update; i++) { 1707 for(i = 0; i < screen_update; i++) {
1708#ifdef HAVE_AGC 1708#ifdef HAVE_AGC
1709 if ((global_settings.rec_source == AUDIO_SRC_MIC) 1709 if ((global_settings.rec_source == AUDIO_SRC_MIC)
1710 || (global_settings.rec_source == AUDIO_SRC_LINEIN)) 1710 || (global_settings.rec_source == AUDIO_SRC_LINEIN)
1711 || (global_settings.rec_source == AUDIO_SRC_FMRADIO))
1711 screens[i].puts(0, filename_offset[i] + PM_HEIGHT + line[i] + 1, buf); 1712 screens[i].puts(0, filename_offset[i] + PM_HEIGHT + line[i] + 1, buf);
1712 else 1713 else
1713#endif 1714#endif