slower retry rate for play sound

This commit is contained in:
Eric Rosenbaum 2016-10-25 10:23:06 -04:00
parent 5f8382d69e
commit cfabc507ae

View file

@ -73,7 +73,7 @@ AudioEngine.prototype.playSound = function (index) {
log.warn('sound ' + index + ' not loaded yet'); log.warn('sound ' + index + ' not loaded yet');
setTimeout(function () { setTimeout(function () {
this.playSound(index); this.playSound(index);
}.bind(this), 100); }.bind(this), 500);
} }
}; };