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)
|
void StretchAudioSource::setSpectralModulesEnabled(const std::array<AudioParameterBool*, 9>& params)
|
||||||
{
|
{
|
||||||
|
/*
|
||||||
jassert(params.size() == m_specproc_order.size());
|
jassert(params.size() == m_specproc_order.size());
|
||||||
std::set<AudioParameterBool*> foo;
|
std::set<AudioParameterBool*> foo;
|
||||||
for (auto& e : params)
|
for (auto& e : params)
|
||||||
foo.insert(e);
|
foo.insert(e);
|
||||||
jassert(foo.size() == params.size());
|
jassert(foo.size() == params.size());
|
||||||
|
*/
|
||||||
bool changed = false;
|
bool changed = false;
|
||||||
for (int i = 0; i < m_specproc_order.size(); ++i)
|
for (int i = 0; i < m_specproc_order.size(); ++i)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user