From a081333ddd19994bb24095becefc276f21376cb8 Mon Sep 17 00:00:00 2001 From: Eric Rosenbaum Date: Thu, 22 Jun 2017 11:07:24 -0400 Subject: [PATCH] Fix comment --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index c8a4488..7b5f191 100644 --- a/src/index.js +++ b/src/index.js @@ -29,7 +29,7 @@ class AudioPlayer { this.panEffect = new PanEffect(this.audioEngine.audioContext); // Chain the audio effects together - // effectsNode -> panEffect -> audioEngine.input -> destination (speakers) + // effectsNode -> panEffect -> audioEngine.input this.effectsNode = this.audioEngine.audioContext.createGain(); this.effectsNode.connect(this.panEffect.panner); this.panEffect.connect(this.audioEngine.input);