diff --git a/v3/src/sound/webaudio/WebAudioSound.js b/v3/src/sound/webaudio/WebAudioSound.js index 7e5106334..a401c5ee6 100644 --- a/v3/src/sound/webaudio/WebAudioSound.js +++ b/v3/src/sound/webaudio/WebAudioSound.js @@ -112,7 +112,7 @@ var WebAudioSound = new Class({ this.source.onended = function (ev) { if (ev.target === this.source) { // sound ended - this.stop(); + this.stop(); // TODO creates race condition because it's called in separate thread } // else was stopped }.bind(this);