Skip to content

Commit

Permalink
Merge pull request #4141 from quirxmode/echo_fix
Browse files Browse the repository at this point in the history
Echo fix: echo added left channel samples to right channel
  • Loading branch information
uklotzde committed Jul 25, 2021
2 parents e7cc43b + 686738d commit eeda23b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/effects/builtin/echoeffect.cpp
Expand Up @@ -221,7 +221,7 @@ void EchoEffect::processChannel(const ChannelHandle& handle, EchoGroupState* pGr
bufferedSampleLeft * feedback_ramped);
pGroupState->delay_buf[pGroupState->write_position + 1] = SampleUtil::clampSample(
pInput[i + 1] * send_ramped +
bufferedSampleLeft * feedback_ramped);
bufferedSampleRight * feedback_ramped);

// Pingpong the output. If the pingpong value is zero, all of the
// math below should result in a simple copy of delay buf to pOutput.
Expand Down

0 comments on commit eeda23b

Please sign in to comment.