Browse Source

Commented out parameter check. Damn, this got included in the public release...

tags/1.1.1
xenakios 7 years ago
parent
commit
faf84a7233
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      Source/PS_Source/StretchSource.cpp

+ 2
- 0
Source/PS_Source/StretchSource.cpp View File

@@ -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…
Cancel
Save