1
0
Fork 0
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:
Simon Weis 2025-04-19 18:46:00 +02:00
parent c786e6160c
commit 33530a2a1e

View file

@ -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;
} }
} }