summaryrefslogtreecommitdiff
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
parent79c5202e0726dfea9bf712e403fba0dc2d8a71af (diff)
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
-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)
{
if(global_settings.rec_source == SOURCE_MIC)
{
- mpeg_set_recording_gain(global_settings.rec_left_gain, 0,
+ mpeg_set_recording_gain(0, 0,
global_settings.rec_mic_gain);
}
else