diff options
author | Devine Lu Linvega <[email protected]> | 2019-04-05 10:59:37 +0900 |
---|---|---|
committer | Devine Lu Linvega <[email protected]> | 2019-04-05 10:59:37 +0900 |
commit | 85270a920eecaccfc690e254fa4db76c8562591c (patch) | |
tree | 097741aff763e088492329ed848e68d918403bdf | |
parent | c3e2c06b20c771ed42be176ea37ba9e759407b8d (diff) | |
download | Orca-85270a920eecaccfc690e254fa4db76c8562591c.tar.gz Orca-85270a920eecaccfc690e254fa4db76c8562591c.zip |
Changed names of port
-rw-r--r-- | desktop/core/library/_cc.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/core/library/_cc.js b/desktop/core/library/_cc.js index 9861a95..6b5b692 100644 --- a/desktop/core/library/_cc.js +++ b/desktop/core/library/_cc.js @@ -16,7 +16,7 @@ function OperatorCC (orca, x, y) { if (!this.bang() && force === false) { return } const channel = this.listen(this.ports.input.channel, true) - const knob = this.listen(this.ports.knob.channel, true) + const knob = this.listen(this.ports.input.knob, true) const rawValue = this.listen(this.ports.input.value, true) const val = Math.ceil((127 * rawValue) / 35) |