mirror of
https://github.com/ppy/osu.git
synced 2026-05-19 00:30:19 +08:00
Reverts a small bandaid fix that's no longer necessary relating to the order in which osulogo is initialised.
This commit is contained in:
@@ -50,12 +50,6 @@ namespace osu.Game.GameModes.Menu
|
||||
{
|
||||
base.Load();
|
||||
|
||||
osuLogo = new OsuLogo(onOsuLogo)
|
||||
{
|
||||
Origin = Anchor.Centre,
|
||||
Anchor = Anchor.Centre
|
||||
};
|
||||
|
||||
Children = new Drawable[]
|
||||
{
|
||||
buttonArea = new Container
|
||||
@@ -89,7 +83,11 @@ namespace osu.Game.GameModes.Menu
|
||||
}
|
||||
}
|
||||
},
|
||||
osuLogo
|
||||
osuLogo = new OsuLogo(onOsuLogo)
|
||||
{
|
||||
Origin = Anchor.Centre,
|
||||
Anchor = Anchor.Centre
|
||||
}
|
||||
};
|
||||
|
||||
buttonFlow.Position = new Vector2(wedge_width * 2 - (button_width + osuLogo.SizeForFlow / 4), 0);
|
||||
|
||||
Reference in New Issue
Block a user