mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-16 08:38:00 +00:00
createInsOuts was using input count for output
This commit is contained in:
parent
7159700f11
commit
1b8fdc404d
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ define(["Tone/core/Tone", "Tone/core/Param", "Tone/type/Type"], function (Tone)
|
|||
if (outputs === 1){
|
||||
this.output = new Tone.Gain();
|
||||
} else if (outputs > 1){
|
||||
this.output = new Array(inputs);
|
||||
this.output = new Array(outputs);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue