1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-21 20:12:57 +08:00

Fix logo masking not being applied correctly for showcase/win screens

This commit is contained in:
Dean Herbert 2019-07-13 11:13:00 +09:00
parent e973af9e52
commit 08014b1b99
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ namespace osu.Game.Tournament.Screens.Showcase
[BackgroundDependencyLoader] [BackgroundDependencyLoader]
private void load() private void load()
{ {
AddInternal(new TournamentLogo()); AddInternal(new TournamentLogo(false));
} }
} }
} }

View File

@ -45,7 +45,7 @@ namespace osu.Game.Tournament.Screens.TeamWin
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,
Loop = true, Loop = true,
}, },
new TournamentLogo new TournamentLogo(false)
{ {
Y = 40, Y = 40,
}, },