Make countries name non-italic

This commit is contained in:
Andrei Zavatski 2020-02-14 20:49:37 +03:00
parent 3b79c8ce6c
commit f64eabc38b

View File

@ -65,7 +65,7 @@ namespace osu.Game.Overlays.Rankings.Tables
{
public CountryName(Country country)
{
Font = OsuFont.GetFont(size: 12, italics: true);
Font = OsuFont.GetFont(size: 12);
Text = country.FullName ?? string.Empty;
}