mirror of https://github.com/ppy/osu
Update with removal of looping parameter
This commit is contained in:
parent
0c3aef8645
commit
9b5995f2f1
|
@ -115,7 +115,9 @@ public void Play()
|
|||
if (Sample == null)
|
||||
return;
|
||||
|
||||
activeChannel = Sample.Play(Looping);
|
||||
activeChannel = Sample.GetChannel();
|
||||
activeChannel.Looping = Looping;
|
||||
activeChannel.Play();
|
||||
|
||||
Played = true;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue