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

Fix delay inconsistency in IntroCircles.cs

This commit is contained in:
NotGumballer91 2022-10-11 16:16:57 +08:00 committed by GitHub
parent 5baad52a9e
commit d18466d740
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -278,11 +278,11 @@ namespace osu.Game.Screens.Menu
if (!UsingThemedIntro)
{
initialBeatmap?.PrepareTrackForPreview(false, 2200);
initialBeatmap?.PrepareTrackForPreview(false, 2600);
drawableTrack.VolumeTo(0);
drawableTrack.Restart();
drawableTrack.VolumeTo(1, 2200, Easing.InCubic);
drawableTrack.VolumeTo(1, 2600, Easing.InCubic);
}
else
{