Fix off-by-one colour retrieval.

This commit is contained in:
Dean Herbert
2016-11-02 18:38:17 +09:00
parent b72e9221fd
commit da18e2d4f6
2 changed files with 3 additions and 3 deletions

View File

@ -40,7 +40,7 @@ namespace osu.Desktop.VisualTests.Tests
{
StartTime = time,
Position = new Vector2(RNG.Next(0, 512), RNG.Next(0, 384)),
NewCombo = (i + 1) % 4 == 0
NewCombo = i % 4 == 0
});
time += 500;