summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2002-11-21 18:58:55 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2002-11-21 18:58:55 +0000
commit390e8f0ec6f1093170e4a51268dfab58d90b730e (patch)
tree823250e48cdde8430d5600c9590190da9d89a10d /apps
parent79c5202e0726dfea9bf712e403fba0dc2d8a71af (diff)
downloadrockbox-390e8f0ec6f1093170e4a51268dfab58d90b730e.tar.gz
rockbox-390e8f0ec6f1093170e4a51268dfab58d90b730e.zip
Set both channel level to 0 when recording from microphone
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2872 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/recorder/recording.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/recorder/recording.c b/apps/recorder/recording.c
index 7a1a47f842..2471d400cd 100644
--- a/apps/recorder/recording.c
+++ b/apps/recorder/recording.c
@@ -68,7 +68,7 @@ static void set_gain(void)
68{ 68{
69 if(global_settings.rec_source == SOURCE_MIC) 69 if(global_settings.rec_source == SOURCE_MIC)
70 { 70 {
71 mpeg_set_recording_gain(global_settings.rec_left_gain, 0, 71 mpeg_set_recording_gain(0, 0,
72 global_settings.rec_mic_gain); 72 global_settings.rec_mic_gain);
73 } 73 }
74 else 74 else