1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 10:52:53 +08:00

Correctly clear other lists

This commit is contained in:
Dean Herbert 2019-10-26 01:19:23 +09:00
parent c031aeb14c
commit d25f7f4c27

View File

@ -240,6 +240,13 @@ namespace osu.Game.Beatmaps.ControlPoints
}
}
public void Clear() => groups.Clear();
public void Clear()
{
groups.Clear();
timingPoints.Clear();
difficultyPoints.Clear();
samplePoints.Clear();
effectPoints.Clear();
}
}
}