Fix venera fonts not being correctly specified

This commit is contained in:
smoogipoo
2019-02-22 19:42:09 +09:00
parent 3015d40f8f
commit d61dfe888e
16 changed files with 20 additions and 18 deletions

View File

@ -17,6 +17,8 @@ namespace osu.Game.Graphics
/// </summary>
public static FontUsage Default => GetFont();
public static FontUsage Numeric => GetFont(Typeface.Venera, weight: FontWeight.Regular);
/// <summary>
/// Retrieves a <see cref="FontUsage"/>.
/// </summary>

View File

@ -81,7 +81,7 @@ namespace osu.Game.Graphics.UserInterface
{
Children = new Drawable[]
{
DisplayedCountSpriteText = new OsuSpriteText { Font = OsuFont.GetFont(Typeface.Venera) }
DisplayedCountSpriteText = new OsuSpriteText { Font = OsuFont.Numeric }
};
TextSize = 40;