Fix results' beatmap title and artist language setting being swapped

This commit is contained in:
Joehu 2020-03-17 17:32:58 -07:00
parent a40e3505f3
commit 3c07f73c7b
1 changed files with 2 additions and 2 deletions

View File

@ -87,14 +87,14 @@ private void load(Bindable<WorkingBeatmap> working)
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Text = new LocalisedString((metadata.Title, metadata.TitleUnicode)),
Text = new LocalisedString((metadata.TitleUnicode, metadata.Title)),
Font = OsuFont.Torus.With(size: 20, weight: FontWeight.SemiBold),
},
new OsuSpriteText
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Text = new LocalisedString((metadata.Artist, metadata.ArtistUnicode)),
Text = new LocalisedString((metadata.ArtistUnicode, metadata.Artist)),
Font = OsuFont.Torus.With(size: 14, weight: FontWeight.SemiBold)
},
new Container