mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 14:46:38 +09:00
Get the game running, though not perfectly
This commit is contained in:
@ -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];
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user