Fix unnecessary texture atlas generation

This commit is contained in:
Dean Herbert
2019-02-17 19:48:54 +09:00
parent fcab21908b
commit 6ea1ed8d04
7 changed files with 17 additions and 13 deletions

View File

@ -2,14 +2,13 @@
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework.Allocation;
using osu.Framework.Graphics.Textures;
namespace osu.Game.Tournament.Screens.Showcase
{
public class ShowcaseScreen : BeatmapInfoScreen
{
[BackgroundDependencyLoader]
private void load(TextureStore textures)
private void load()
{
AddInternal(new TournamentLogo());
}