Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
vasilymilovidov committed Oct 1, 2023
1 parent 755e243 commit ac9c629
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/superdough/superdough.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export function getAnalyzerData(type = 'time') {
return analyserData;
}

function effectSend(input, effect, wet, size) {
function effectSend(input, effect, wet) {
const send = gainNode(wet);
input.connect(send);
send.connect(effect);
Expand Down Expand Up @@ -381,7 +381,7 @@ export const superdough = async (value, deadline, hapDuration) => {
let reverbSend;
if (room > 0 && size > 0) {
const reverbNode = getReverb(orbit, size, buffer);
reverbSend = effectSend(post, reverbNode, room, size);
reverbSend = effectSend(post, reverbNode, room);
}

// analyser
Expand Down

0 comments on commit ac9c629

Please sign in to comment.