mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 22:56:36 +09:00
Fix break parsing
This commit is contained in:
@ -264,7 +264,7 @@ namespace osu.Game.Beatmaps.Formats
|
||||
var breakEvent = new BreakPeriod
|
||||
{
|
||||
StartTime = start,
|
||||
EndTime = Math.Max(start, getOffsetTime(Parsing.ParseDouble(split[1])))
|
||||
EndTime = Math.Max(start, getOffsetTime(Parsing.ParseDouble(split[2])))
|
||||
};
|
||||
|
||||
if (!breakEvent.HasEffect)
|
||||
|
Reference in New Issue
Block a user