1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 16:12:57 +08:00

Revert unnecessary change

This commit is contained in:
smoogipoo 2020-08-05 22:32:44 +09:00
parent 86ae61c6b7
commit 0f7fde5d2c

View File

@ -83,7 +83,10 @@ namespace osu.Game.Overlays.Music
BeatmapInfo toSelect = list.FirstVisibleSet?.Beatmaps?.FirstOrDefault();
if (toSelect != null)
{
beatmap.Value = beatmaps.GetWorkingBeatmap(toSelect);
musicController.CurrentTrack?.Restart();
}
};
}
@ -116,12 +119,12 @@ namespace osu.Game.Overlays.Music
{
if (set.ID == (beatmap.Value?.BeatmapSetInfo?.ID ?? -1))
{
musicController.SeekTo(0);
musicController.CurrentTrack?.Seek(0);
return;
}
beatmap.Value = beatmaps.GetWorkingBeatmap(set.Beatmaps.First());
musicController.Play(true);
musicController.CurrentTrack?.Restart();
}
}