mirror of
https://github.com/osukey/osukey.git
synced 2025-08-02 22:26:41 +09:00
Fix incorrect exception
This commit is contained in:
@ -38,7 +38,7 @@ namespace osu.Game.Screens.Play
|
||||
{
|
||||
var endTime = Math.Max((h as IHasEndTime)?.EndTime ?? h.StartTime, h.StartTime);
|
||||
|
||||
Debug.Assert(endTime > h.StartTime);
|
||||
Debug.Assert(endTime >= h.StartTime);
|
||||
|
||||
int startRange = (int)((h.StartTime - firstHit) / interval);
|
||||
int endRange = (int)((endTime - firstHit) / interval);
|
||||
|
Reference in New Issue
Block a user