mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 07:06:35 +09:00
Fix incorrect legacy decoder usage
This commit is contained in:
@ -177,7 +177,7 @@ namespace osu.Game.Beatmaps.Formats
|
||||
{
|
||||
var startTime = Parsing.ParseDouble(split[1]);
|
||||
var repeatCount = Parsing.ParseInt(split[2]);
|
||||
timelineGroup = storyboardSprite?.AddLoop(startTime, Math.Max(0, repeatCount));
|
||||
timelineGroup = storyboardSprite?.AddLoop(startTime, Math.Max(0, repeatCount - 1));
|
||||
break;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user