mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Fix FIRFilter not resetting pos member variable
This commit is contained in:
parent
c786e6160c
commit
33530a2a1e
1 changed files with 2 additions and 0 deletions
|
|
@ -109,6 +109,8 @@ namespace juce::dsp::FIR
|
||||||
|
|
||||||
for (size_t i = 0; i < size; ++i)
|
for (size_t i = 0; i < size; ++i)
|
||||||
fifo[i] = SampleType {0};
|
fifo[i] = SampleType {0};
|
||||||
|
|
||||||
|
pos = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue