Enable smoothing for CC
This commit is contained in:
parent
5835255d07
commit
652d0c898d
1 changed files with 1 additions and 4 deletions
|
|
@ -86,10 +86,7 @@ void ControllerSource::generate(const ModKey& sourceKey, NumericId<Voice> voiceI
|
||||||
auto it = impl_->smoother_.find(sourceKey);
|
auto it = impl_->smoother_.find(sourceKey);
|
||||||
if (it != impl_->smoother_.end()) {
|
if (it != impl_->smoother_.end()) {
|
||||||
Smoother& s = it->second;
|
Smoother& s = it->second;
|
||||||
|
bool canShortcut = events.size() == 1;
|
||||||
#pragma message("TODO: implement CC shortcut")
|
|
||||||
bool canShortcut = false;
|
|
||||||
|
|
||||||
s.process(buffer, buffer, canShortcut);
|
s.process(buffer, buffer, canShortcut);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue