mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-22 23:57:50 -05:00
fix funkinsound compile error
This commit is contained in:
parent
40d1fd96a3
commit
1e65cacb0e
1 changed files with 1 additions and 1 deletions
|
@ -359,7 +359,7 @@ class FunkinSound extends FlxSound implements ICloneable<FunkinSound>
|
||||||
|
|
||||||
if (shouldLoadPartial)
|
if (shouldLoadPartial)
|
||||||
{
|
{
|
||||||
var music = FunkinSound.loadPartial(pathToUse, params.partialParams?.start ?? 0, params.partialParams?.end ?? 1, params?.startingVolume ?? 1.0,
|
var music = FunkinSound.loadPartial(pathToUse, params.partialParams?.start ?? 0.0, params.partialParams?.end ?? 1.0, params?.startingVolume ?? 1.0,
|
||||||
params.loop ?? true, false, false, params.onComplete);
|
params.loop ?? true, false, false, params.onComplete);
|
||||||
|
|
||||||
if (music != null)
|
if (music != null)
|
||||||
|
|
Loading…
Reference in a new issue