Skip to content

Commit

Permalink
fix convolver signal issue
Browse files Browse the repository at this point in the history
  • Loading branch information
lukephills committed May 19, 2015
1 parent e4dd7c1 commit cf18449
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Tone/effect/Convolver.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ define(["Tone/core/Tone", "Tone/core/Buffer", "Tone/effect/Effect"], function(To
*/
Tone.Convolver = function(url){

Tone.Effect.apply(this, arguments);
var options = this.optionsObject(arguments, ["url"], Tone.Convolver.defaults);
Tone.Effect.call(this, options);

/**
* convolver node
Expand Down

0 comments on commit cf18449

Please sign in to comment.