1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-02 06:49:54 +08:00

Fix forgotten modulo

This commit is contained in:
Salman Ahmed
2021-01-24 00:59:16 +03:00
Unverified
parent faa2210274
commit 85b8b00b8c
@@ -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)
{