Merge pull request #22632 from Joehuu/fix-beatmap-preview-progress

Fix beatmap card song preview progress sometimes showing past progress for one frame
This commit is contained in:
Dean Herbert 2023-02-14 17:06:50 +09:00 committed by GitHub
commit e6f0a1dec9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -98,6 +98,9 @@ namespace osu.Game.Audio
Track.Stop();
// Ensure the track is reset immediately on stopping, so the next time it is started it has a correct time value.
Track.Seek(0);
Stopped?.Invoke();
}