1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 16:52:54 +08:00

Fix origin specifications using incorrect flags

This commit is contained in:
Dean Herbert 2021-05-20 01:53:24 +09:00
parent 363aec8179
commit 00ed699340

View File

@ -85,7 +85,7 @@ namespace osu.Game.Screens.Play.HUD.HitErrorMeters
colourBarsEarly = new Container
{
Anchor = Anchor.CentreLeft,
Origin = Anchor.x2,
Origin = Anchor.TopRight,
RelativeSizeAxes = Axes.Both,
Height = 0.5f,
Scale = new Vector2(1, -1),
@ -93,7 +93,7 @@ namespace osu.Game.Screens.Play.HUD.HitErrorMeters
colourBarsLate = new Container
{
Anchor = Anchor.CentreLeft,
Origin = Anchor.x2,
Origin = Anchor.TopRight,
RelativeSizeAxes = Axes.Both,
Height = 0.5f,
},