mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 01:47:24 +08: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++)
|
for (int i = 0; i < 25; i++)
|
||||||
{
|
{
|
||||||
var coverType = coverTypes.ElementAt(i);
|
var coverType = coverTypes.ElementAt(i % coverTypes.Count());
|
||||||
|
|
||||||
var cover = new UpdateableBeatmapSetCover(coverType)
|
var cover = new UpdateableBeatmapSetCover(coverType)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user