Added requested changes. Mainly changing lambdas to direct function references.

This commit is contained in:
FreezyLemon
2017-11-22 21:41:50 +01:00
parent 7d428875b8
commit 18b0b77f0a
4 changed files with 10 additions and 11 deletions

View File

@ -237,7 +237,7 @@ namespace osu.Game.Screens.Multiplayer
FillMode = FillMode.Fill,
OnLoadComplete = d => d.FadeInFromZero(400, Easing.Out),
},
bsc => coverContainer.Add(bsc));
coverContainer.Add);
beatmapTitle.Current = localisation.GetUnicodePreference(value.Metadata.TitleUnicode, value.Metadata.Title);
beatmapDash.Text = @" - ";
@ -260,4 +260,4 @@ namespace osu.Game.Screens.Multiplayer
participantInfo.Participants = value;
}
}
}
}