mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Fix forgotten modulo
This commit is contained in:
@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user