diff --git a/Tone/core/Bus.js b/Tone/core/Bus.js index 0cf208f6..d2e06cd4 100644 --- a/Tone/core/Bus.js +++ b/Tone/core/Bus.js @@ -22,7 +22,7 @@ define(["Tone/core/Tone"], function(Tone){ * defined in "Tone/core/Bus" * * @param {string} channelName - * @param {number} amount + * @param {number} amount the amount of the source to send to the bus. in Decibels. * @return {GainNode} */ Tone.prototype.send = function(channelName, amount){ @@ -30,7 +30,7 @@ define(["Tone/core/Tone"], function(Tone){ Buses[channelName] = this.context.createGain(); } var sendKnob = this.context.createGain(); - sendKnob.gain.value = this.defaultArg(amount, 1); + sendKnob.gain.value = this.dbToGain(this.defaultArg(amount, 1)); this.output.chain(sendKnob, Buses[channelName]); return sendKnob; };