From fcf98390f56b0e5cca645d8f7f255d9fc1c8731b Mon Sep 17 00:00:00 2001 From: smoogipoo Date: Tue, 21 Aug 2018 12:10:00 +0900 Subject: [PATCH] Cleanup --- osu.Game/Rulesets/UI/Playfield.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/osu.Game/Rulesets/UI/Playfield.cs b/osu.Game/Rulesets/UI/Playfield.cs index 7a7ada3435..da14fb54d6 100644 --- a/osu.Game/Rulesets/UI/Playfield.cs +++ b/osu.Game/Rulesets/UI/Playfield.cs @@ -56,9 +56,10 @@ namespace osu.Game.Rulesets.UI private WorkingBeatmap beatmap; [BackgroundDependencyLoader] - private void load(IBindableBeatmap bBeatmap) + private void load(IBindableBeatmap beatmap) { - beatmap = bBeatmap.Value; + this.beatmap = beatmap.Value; + HitObjects = CreateHitObjectContainer(); HitObjects.RelativeSizeAxes = Axes.Both;