diff --git a/osu-resources b/osu-resources index ce76f812d3..b90c4ed490 160000 --- a/osu-resources +++ b/osu-resources @@ -1 +1 @@ -Subproject commit ce76f812d3e059233e1dea395b125352f638b2da +Subproject commit b90c4ed490f76f2995662b3a8af3a32b8756a012 diff --git a/osu.Game/OsuGameBase.cs b/osu.Game/OsuGameBase.cs index 371699eab3..efda7ff7a0 100644 --- a/osu.Game/OsuGameBase.cs +++ b/osu.Game/OsuGameBase.cs @@ -116,6 +116,7 @@ namespace osu.Game Fonts.AddStore(new GlyphStore(Resources, @"Fonts/Exo2.0-BlackItalic")); Fonts.AddStore(new GlyphStore(Resources, @"Fonts/Venera")); + Fonts.AddStore(new GlyphStore(Resources, @"Fonts/Venera-Light")); OszArchiveReader.Register(); diff --git a/osu.Game/Screens/Ranking/ResultsPageScore.cs b/osu.Game/Screens/Ranking/ResultsPageScore.cs index 0d485121ed..c6953a88fa 100644 --- a/osu.Game/Screens/Ranking/ResultsPageScore.cs +++ b/osu.Game/Screens/Ranking/ResultsPageScore.cs @@ -95,8 +95,8 @@ namespace osu.Game.Screens.Ranking Anchor = Anchor.TopCentre, Origin = Anchor.TopCentre, Colour = colours.PinkDarker, - Y = 5, - TextSize = 60, + Y = 10, + TextSize = 56, }, } }, @@ -370,7 +370,8 @@ namespace osu.Game.Screens.Ranking [BackgroundDependencyLoader] private void load(TextureStore textures) { - cover.Texture = textures.Get(user.CoverUrl); + if (user.Cover?.Url != null) + cover.Texture = textures.Get(user.Cover?.Url); } } @@ -383,6 +384,7 @@ namespace osu.Game.Screens.Ranking public SlowScoreCounter(uint leading = 0) : base(leading) { DisplayedCountSpriteText.Shadow = false; + DisplayedCountSpriteText.Font = @"Venera-Light"; UseCommaSeparator = true; } }