1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 22:07:25 +08:00

Update with removal of looping parameter

This commit is contained in:
smoogipoo 2021-02-12 19:05:17 +09:00
parent 0c3aef8645
commit 9b5995f2f1

View File

@ -115,7 +115,9 @@ namespace osu.Game.Skinning
if (Sample == null)
return;
activeChannel = Sample.Play(Looping);
activeChannel = Sample.GetChannel();
activeChannel.Looping = Looping;
activeChannel.Play();
Played = true;
}