Use single line for GetUnicodePreference.

This commit is contained in:
smoogipooo
2017-04-28 14:14:14 +09:00
parent 15b76b13ce
commit c95a6fbd09
2 changed files with 4 additions and 8 deletions

View File

@ -326,10 +326,8 @@ namespace osu.Game.Screens.Ranking
versionMapper.Colour = colours.Gray8;
versionMapper.Text = $"{beatmap.Version} - mapped by {beatmap.Metadata.Author}";
title.Current = localisation.GetUnicodePreference(
beatmap.Metadata.TitleUnicode, beatmap.Metadata.Title);
artist.Current = localisation.GetUnicodePreference(
beatmap.Metadata.ArtistUnicode, beatmap.Metadata.Artist);
title.Current = localisation.GetUnicodePreference(beatmap.Metadata.TitleUnicode, beatmap.Metadata.Title);
artist.Current = localisation.GetUnicodePreference(beatmap.Metadata.ArtistUnicode, beatmap.Metadata.Artist);
}
}