Skip to content

Commit

Permalink
Fix AudioTrack regression #2.
Browse files Browse the repository at this point in the history
  • Loading branch information
peppy committed Oct 6, 2016
1 parent 9dc83ee commit 06b4e7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osu.Framework/Audio/Track/AudioTrack.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public override void Update()
base.Update();
if (Looping && !IsRunning && Length == CurrentTime)
{
Stop(); //required to avoid stack overflow.
Reset();
Start();
}
}
Expand Down

0 comments on commit 06b4e7c

Please sign in to comment.