1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-06 14:02:53 +08:00

Fix alignment of flags on team intro screen

This commit is contained in:
Dean Herbert 2020-03-08 18:40:13 +09:00
parent 5d5910822b
commit 9138bafbeb

View File

@ -48,7 +48,7 @@ namespace osu.Game.Tournament.Screens.TeamIntro
return;
}
const float y_flag_offset = 288;
const float y_flag_offset = 292;
const float y_offset = 460;
@ -60,11 +60,11 @@ namespace osu.Game.Tournament.Screens.TeamIntro
},
new DrawableTeamFlag(match.NewValue.Team1.Value)
{
Position = new Vector2(160, y_flag_offset),
Position = new Vector2(165, y_flag_offset),
},
new DrawableTeamWithPlayers(match.NewValue.Team1.Value, TeamColour.Red)
{
Position = new Vector2(160, y_offset),
Position = new Vector2(165, y_offset),
},
new DrawableTeamFlag(match.NewValue.Team2.Value)
{