mirror of
https://github.com/ppy/osu
synced 2024-12-28 09:52:56 +00:00
Merge pull request #18728 from peppy/fix-unsafe-sample-playback
Fix unsafe sample playback in `GameplaySampleTriggerSource`
This commit is contained in:
commit
ea191da496
@ -56,12 +56,12 @@ namespace osu.Game.Rulesets.UI
|
||||
PlaySamples(samples);
|
||||
}
|
||||
|
||||
protected void PlaySamples(ISampleInfo[] samples)
|
||||
protected void PlaySamples(ISampleInfo[] samples) => Schedule(() =>
|
||||
{
|
||||
var hitSound = getNextSample();
|
||||
hitSound.Samples = samples;
|
||||
hitSound.Play();
|
||||
}
|
||||
});
|
||||
|
||||
protected HitObject GetMostValidObject()
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user