1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-14 10:17:38 +08:00

Formatting fixes

This commit is contained in:
MrTheMake 2017-05-24 02:30:32 +02:00
parent 0616256bd0
commit 67774192dd

View File

@ -316,13 +316,12 @@ namespace osu.Game.Screens.Select
/// </summary>
private void selectionChanged(BeatmapInfo beatmap)
{
bool beatmapSetChange = false;
selectionChangedDebounce?.Cancel();
if (beatmap.Equals(Beatmap?.BeatmapInfo))
{
selectionChangedDebounce?.Cancel();
return;
}
bool beatmapSetChange = false;
if (beatmap.BeatmapSetInfoID == selectionChangeNoBounce?.BeatmapSetInfoID)
sampleChangeDifficulty.Play();
@ -334,7 +333,6 @@ namespace osu.Game.Screens.Select
selectionChangeNoBounce = beatmap;
selectionChangedDebounce?.Cancel();
selectionChangedDebounce = Scheduler.AddDelayed(delegate
{
Beatmap = database.GetWorkingBeatmap(beatmap, Beatmap);