Skip to content

Commit 116881b

Browse files
committed
Fix for distortions
1 parent 6f05c23 commit 116881b

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/effect_bigmuff.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,7 @@ void AudioEffectBigMuff::doProcess(const float32_t* inblockL, const float32_t* i
223223
for (uint32_t i=1; i<=len; i++)
224224
{
225225
outblockL[i-1] = y3[i-1]*OUTPUT_GAIN; //-26dB
226+
outblockR[i-1] = outblockL[i-1];
226227
}
227228

228229
SustainMedia_1 = SustainMedia;

src/effect_ds1.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,5 +221,6 @@ void AudioEffectDS1::doProcess(const float32_t* inblockL, const float32_t* inblo
221221
for (uint32_t i=1; i<=len; i++)
222222
{
223223
outblockL[i-1] = outblockL[i-1]*OUTPUT_GAIN; //-15dB
224+
outblockR[i-1] = outblockL[i-1];
224225
}
225226
}

0 commit comments

Comments
 (0)