mirror of
https://github.com/scratchfoundation/scratch-audio.git
synced 2024-12-22 05:53:43 -05:00
better handling for sounds that did not load
This commit is contained in:
parent
cfabc507ae
commit
b30996997a
1 changed files with 5 additions and 3 deletions
|
@ -71,9 +71,11 @@ AudioEngine.prototype.playSound = function (index) {
|
|||
} else {
|
||||
// if the sound has not yet loaded, wait and try again
|
||||
log.warn('sound ' + index + ' not loaded yet');
|
||||
setTimeout(function () {
|
||||
this.playSound(index);
|
||||
}.bind(this), 500);
|
||||
if (player) {
|
||||
setTimeout(function () {
|
||||
this.playSound(index);
|
||||
}.bind(this), 500);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue