Skip to content

Commit

Permalink
REMOVE CONSOLE.LOG
Browse files Browse the repository at this point in the history
  • Loading branch information
spessasus committed Oct 13, 2024
1 parent 03ea1b5 commit c788bea
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/spessasynth_lib/synthetizer/worklet_processor.min.js

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ export function panVoice(gainLeft,
// cap reverb
reverbLevel = Math.min(reverbLevel, 1000);
const reverbGain = reverbLevel / WORKLET_SYSTEM_REVERB_DIVIDER;
console.log(reverbGain);
for (let i = 0; i < inputBuffer.length; i++)
{
reverbLeft[i] += reverbGain * inputBuffer[i];
Expand Down

0 comments on commit c788bea

Please sign in to comment.