소스 검색

Merge pull request #167 from FrankBoesing/patch-3

Bugfix for passthrough
dds
Paul Stoffregen 8 년 전
부모
커밋
e2c7d3d0e0
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. +2
    -1
      effect_chorus.cpp

+ 2
- 1
effect_chorus.cpp 파일 보기

@@ -78,7 +78,7 @@ void AudioEffectChorus::update(void)
// do passthru
// It stores the unmodified data in the delay line so that
// it isn't as likely to click
if(num_chorus < 1) {
if(num_chorus <= 1) {
// Just passthrough
block = receiveWritable(0);
if(block) {
@@ -93,6 +93,7 @@ void AudioEffectChorus::update(void)
transmit(block,0);
release(block);
}
return;
}

// L E F T C H A N N E L

Loading…
취소
저장