Fix regression meaning SkinnableSound initialisation may never happen

This commit is contained in:
Dean Herbert
2021-03-19 19:22:47 +09:00
parent bf4317d3f0
commit c0c8b3e46c

View File

@ -131,6 +131,14 @@ namespace osu.Game.Skinning
});
}
protected override void LoadAsyncComplete()
{
base.LoadAsyncComplete();
if (!samplesContainer.Any())
updateSamples();
}
/// <summary>
/// Stops the samples.
/// </summary>