Merge pull request #19373 from peppy/fix-negative-star-rating-display

Fix star ratings which are still being calculated showing as "-1" at song select
This commit is contained in:
Dan Balasescu
2022-07-25 18:20:30 +09:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ namespace osu.Game.Tests.Visual.UserInterface
AutoSizeAxes = Axes.Both,
Spacing = new Vector2(2f),
Direction = FillDirection.Horizontal,
ChildrenEnumerable = Enumerable.Range(0, 15).Select(i => new FillFlowContainer
ChildrenEnumerable = Enumerable.Range(-1, 15).Select(i => new FillFlowContainer
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,