Skip to content

Commit 4a4a849

Browse files
Added play method which only returns false
1 parent cd00b5d commit 4a4a849

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/sound/noaudio/NoAudioSoundManager.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ var NoAudioSoundManager = new Class({
2424
var sound = this.add(key, config);
2525
sound.spritemap = {};
2626
return sound;
27-
}
27+
},
28+
play: function (key, extra) {
29+
return false;
30+
},
2831
});
2932
module.exports = NoAudioSoundManager;

0 commit comments

Comments
 (0)