Commented out parameter check. Damn, this got included in the public release...
This commit is contained in:
parent
557c16b11c
commit
faf84a7233
@ -166,11 +166,13 @@ void StretchAudioSource::setMainVolume(double decibels)
|
||||
|
||||
void StretchAudioSource::setSpectralModulesEnabled(const std::array<AudioParameterBool*, 9>& params)
|
||||
{
|
||||
/*
|
||||
jassert(params.size() == m_specproc_order.size());
|
||||
std::set<AudioParameterBool*> foo;
|
||||
for (auto& e : params)
|
||||
foo.insert(e);
|
||||
jassert(foo.size() == params.size());
|
||||
*/
|
||||
bool changed = false;
|
||||
for (int i = 0; i < m_specproc_order.size(); ++i)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user