Fix obsolete font usages

This commit is contained in:
Dean Herbert
2019-03-04 12:06:41 +09:00
parent 73d266fe10
commit 132ce541f3
12 changed files with 39 additions and 62 deletions

View File

@ -163,7 +163,7 @@ namespace osu.Game.Tournament.Components
string hardRockExtra = "";
string srExtra = "";
var ar = beatmap.BaseDifficulty.ApproachRate;
//var ar = beatmap.BaseDifficulty.ApproachRate;
if ((mods & LegacyMods.HardRock) > 0)
{
hardRockExtra = "*";
@ -225,8 +225,7 @@ namespace osu.Game.Tournament.Components
void cp(SpriteText s, Color4 colour)
{
s.Colour = colour;
s.TextSize = 15;
s.Font = @"Exo2.0-Bold";
s.Font = OsuFont.GetFont(weight: FontWeight.Bold, size: 15);
}
bool first = true;