mirror of
https://github.com/osukey/osukey.git
synced 2025-05-21 13:37:20 +09:00
Fix forgotten modulo
This commit is contained in:
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)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user