From ff84a11c376896fa5c1cf68a1bb00db174621ea7 Mon Sep 17 00:00:00 2001 From: smoogipooo Date: Fri, 16 Jun 2017 09:54:16 +0900 Subject: [PATCH] We don't need this to be protected anymore. --- osu.Game/Rulesets/UI/HitRenderer.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/osu.Game/Rulesets/UI/HitRenderer.cs b/osu.Game/Rulesets/UI/HitRenderer.cs index ea5f912b02..00d678e11e 100644 --- a/osu.Game/Rulesets/UI/HitRenderer.cs +++ b/osu.Game/Rulesets/UI/HitRenderer.cs @@ -250,7 +250,7 @@ private void load() { KeyConversionInputManager.Add(Playfield = CreatePlayfield()); - LoadObjects(); + loadObjects(); if (InputManager?.ReplayInputHandler != null) InputManager.ReplayInputHandler.ToScreenSpace = Playfield.ScaledContent.ToScreenSpace; @@ -259,7 +259,7 @@ private void load() /// /// Creates and adds drawable representations of hit objects to the play field. /// - protected virtual void LoadObjects() + private void loadObjects() { drawableObjects.Capacity = Beatmap.HitObjects.Count;