Get the game running, though not perfectly

This commit is contained in:
Drew DeVault
2016-11-08 18:46:08 -05:00
parent ee24cd310c
commit fe9034323b
4 changed files with 17 additions and 23 deletions

View File

@ -52,7 +52,7 @@ namespace osu.Game.Beatmaps.Formats
foreach (HitObject h in b.HitObjects)
{
if (h.NewCombo) i = (i + 1) % colours.Count;
if (h.NewCombo || i == -1) i = (i + 1) % colours.Count;
h.Colour = colours[i];
}
}