diff --git a/v3/src/sound/BaseSoundManager.js b/v3/src/sound/BaseSoundManager.js index 7ad7e931e..8e07de10e 100644 --- a/v3/src/sound/BaseSoundManager.js +++ b/v3/src/sound/BaseSoundManager.js @@ -141,7 +141,11 @@ var BaseSoundManager = new Class({ sound.pause(); }); }, - resumeAll: NOOP, + resumeAll: function () { + this.sounds.forEach(function (sound) { + sound.resume(); + }); + }, stopAll: function () { this.sounds.forEach(function (sound) { sound.stop();