make all the biquad cascades work
This commit is contained in:
parent
f9b4509dd9
commit
7d27d6f618
1 changed files with 1 additions and 1 deletions
|
@ -153,7 +153,7 @@ impl DspNode for BiqFilt {
|
||||||
let gain = denorm::BiqFilt::gain(gain, frame);
|
let gain = denorm::BiqFilt::gain(gain, frame);
|
||||||
|
|
||||||
let mut s = inp.read(frame);
|
let mut s = inp.read(frame);
|
||||||
for i in 0..order {
|
for i in 0..=order {
|
||||||
s = self.cascade[i as usize].tick(s);
|
s = self.cascade[i as usize].tick(s);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue