1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 23:27:24 +08:00

Fix forgotten modulo

This commit is contained in:
Salman Ahmed 2021-01-24 00:59:16 +03:00
parent faa2210274
commit 85b8b00b8c

View File

@ -65,7 +65,7 @@ namespace osu.Game.Tests.Visual.UserInterface
for (int i = 0; i < 25; i++)
{
var coverType = coverTypes.ElementAt(i);
var coverType = coverTypes.ElementAt(i % coverTypes.Count());
var cover = new UpdateableBeatmapSetCover(coverType)
{