1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-16 16:23:16 +08:00

fix: correct key counter position in Triangles and Legacy skins

This commit is contained in:
tsrk 2023-06-15 13:12:05 +02:00
parent fcdaf72915
commit 9d688733ac
No known key found for this signature in database
GPG Key ID: EBD46BB3049B56D6
2 changed files with 2 additions and 2 deletions

View File

@ -385,7 +385,7 @@ namespace osu.Game.Skinning
{ {
keyCounter.Anchor = Anchor.BottomRight; keyCounter.Anchor = Anchor.BottomRight;
keyCounter.Origin = Anchor.BottomRight; keyCounter.Origin = Anchor.BottomRight;
keyCounter.Position = new Vector2(10, -10 - hitError.Width); keyCounter.Position = new Vector2(-10, -10 - hitError.Width);
} }
} }
}) })

View File

@ -148,7 +148,7 @@ namespace osu.Game.Skinning
{ {
keyCounter.Anchor = Anchor.BottomRight; keyCounter.Anchor = Anchor.BottomRight;
keyCounter.Origin = Anchor.BottomRight; keyCounter.Origin = Anchor.BottomRight;
keyCounter.Position = new Vector2(10, -57 - 10); keyCounter.Position = new Vector2(-10, -60 - 10);
} }
}) })
{ {