mirror of
https://github.com/scratchfoundation/scratch-audio.git
synced 2024-12-22 05:53:43 -05:00
slower retry rate for play sound
This commit is contained in:
parent
5f8382d69e
commit
cfabc507ae
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ AudioEngine.prototype.playSound = function (index) {
|
|||
log.warn('sound ' + index + ' not loaded yet');
|
||||
setTimeout(function () {
|
||||
this.playSound(index);
|
||||
}.bind(this), 100);
|
||||
}.bind(this), 500);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue