mirror of
https://github.com/ppy/osu.git
synced 2026-05-26 08:50:00 +08:00
Fix inspections
This commit is contained in:
@@ -132,7 +132,7 @@ namespace osu.Game.Rulesets.Edit
|
||||
if (objTime >= editorClock.CurrentTime)
|
||||
continue;
|
||||
|
||||
if (lastBefore == null || objTime > lastBefore?.StartTime)
|
||||
if (lastBefore == null || objTime > lastBefore.StartTime)
|
||||
lastBefore = entry.Value.HitObject;
|
||||
}
|
||||
|
||||
@@ -148,7 +148,7 @@ namespace osu.Game.Rulesets.Edit
|
||||
if (objTime < editorClock.CurrentTime)
|
||||
continue;
|
||||
|
||||
if (firstAfter == null || objTime < firstAfter?.StartTime)
|
||||
if (firstAfter == null || objTime < firstAfter.StartTime)
|
||||
firstAfter = entry.Value.HitObject;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user