Skip to content

Commit

Permalink
Merge pull request #731 from tidalcycles/reverb-fix
Browse files Browse the repository at this point in the history
fix: reverb roomsize not required
  • Loading branch information
felixroos committed Oct 9, 2023
2 parents a4fc408 + f34937d commit 54ed415
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/superdough/superdough.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ export const superdough = async (value, deadline, hapDuration) => {
}
// reverb
let reverbSend;
if (room > 0 && roomsize > 0) {
if (room > 0) {
const reverbNode = getReverb(orbit, roomsize, roomfade, roomlp, roomdim);
reverbSend = effectSend(post, reverbNode, room);
}
Expand Down

0 comments on commit 54ed415

Please sign in to comment.