mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 06:36:31 +09:00
Fix nullref due to missing controlPoints.
This commit is contained in:
@ -39,7 +39,7 @@ namespace osu.Game.Beatmaps
|
||||
|
||||
ControlPoint timingPoint = null;
|
||||
foreach (var controlPoint in ControlPoints)
|
||||
if (controlPoint.Time <= time)
|
||||
if (controlPoint.Time <= time || timingPoint == null)
|
||||
{
|
||||
if (controlPoint.TimingChange)
|
||||
{
|
||||
|
Reference in New Issue
Block a user