Merge pull request #18728 from peppy/fix-unsafe-sample-playback

Fix unsafe sample playback in `GameplaySampleTriggerSource`
This commit is contained in:
Dan Balasescu
2022-06-17 12:26:46 +09:00
committed by GitHub

View File

@ -56,12 +56,12 @@ namespace osu.Game.Rulesets.UI
PlaySamples(samples); PlaySamples(samples);
} }
protected void PlaySamples(ISampleInfo[] samples) protected void PlaySamples(ISampleInfo[] samples) => Schedule(() =>
{ {
var hitSound = getNextSample(); var hitSound = getNextSample();
hitSound.Samples = samples; hitSound.Samples = samples;
hitSound.Play(); hitSound.Play();
} });
protected HitObject GetMostValidObject() protected HitObject GetMostValidObject()
{ {