1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-19 09:07:18 +08:00

Add check for no combo colours.

This commit is contained in:
smoogipooo 2017-03-14 21:47:31 +09:00
parent 72e1612f32
commit 5b58daa23d

View File

@ -15,6 +15,9 @@ namespace osu.Game.Modes.Osu.Beatmaps
public void PostProcess(Beatmap<OsuHitObject> beatmap)
{
if (beatmap.ComboColors.Count == 0)
return;
int comboIndex = 0;
int colourIndex = 0;