mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-22 15:48:08 -05:00
Readd a reverted freeplay bugfix
This commit is contained in:
parent
acdd6ba403
commit
074b1afc76
1 changed files with 15 additions and 8 deletions
|
@ -377,7 +377,7 @@ class FunkinSound extends FlxSound implements ICloneable<FunkinSound>
|
||||||
FlxG.sound.music = partialMusic;
|
FlxG.sound.music = partialMusic;
|
||||||
FlxG.sound.list.remove(FlxG.sound.music);
|
FlxG.sound.list.remove(FlxG.sound.music);
|
||||||
|
|
||||||
if (params.onLoad != null) params.onLoad();
|
if (FlxG.sound.music != null && params.onLoad != null) params.onLoad();
|
||||||
});
|
});
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
@ -488,14 +488,21 @@ class FunkinSound extends FlxSound implements ICloneable<FunkinSound>
|
||||||
|
|
||||||
var soundRequest = FlxPartialSound.partialLoadFromFile(path, start, end);
|
var soundRequest = FlxPartialSound.partialLoadFromFile(path, start, end);
|
||||||
|
|
||||||
promise.future.onError(function(e) {
|
if (soundRequest == null)
|
||||||
soundRequest.error("Sound loading was errored or cancelled");
|
{
|
||||||
});
|
promise.complete(null);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
promise.future.onError(function(e) {
|
||||||
|
soundRequest.error("Sound loading was errored or cancelled");
|
||||||
|
});
|
||||||
|
|
||||||
soundRequest.future.onComplete(function(partialSound) {
|
soundRequest.future.onComplete(function(partialSound) {
|
||||||
var snd = FunkinSound.load(partialSound, volume, looped, autoDestroy, autoPlay, onComplete, onLoad);
|
var snd = FunkinSound.load(partialSound, volume, looped, autoDestroy, autoPlay, onComplete, onLoad);
|
||||||
promise.complete(snd);
|
promise.complete(snd);
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
|
||||||
return promise;
|
return promise;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue