Update with removal of looping parameter

This commit is contained in:
smoogipoo 2021-02-12 19:05:17 +09:00
parent 0c3aef8645
commit 9b5995f2f1
1 changed files with 3 additions and 1 deletions

View File

@ -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;
}