1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 06:57:39 +08:00

Remove unnecessary redirection

This commit is contained in:
Dean Herbert 2019-09-19 15:45:08 +09:00
parent 36d0695e5c
commit 48ee95955b

View File

@ -223,9 +223,7 @@ namespace osu.Game.Screens.Select
});
}
void displayScore(ScoreInfo score) => this.Push(new SoloResults(score));
BeatmapDetails.Leaderboard.ScoreSelected += displayScore;
BeatmapDetails.Leaderboard.ScoreSelected += score => this.Push(new SoloResults(score));
}
[BackgroundDependencyLoader(true)]