1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 21:27:24 +08:00

Fix typo in LoopStartTime addition

This commit is contained in:
Dean Herbert 2022-09-06 17:46:03 +09:00
parent 9f2ea54e40
commit a3de5f808e

View File

@ -43,7 +43,7 @@ namespace osu.Game.Storyboards
foreach (var loop in loops)
{
command = loop.Alpha.Commands.FirstOrDefault();
if (command != null) alphaCommands.Add((command.StartTime + loop.StartTime, command.StartValue == 0));
if (command != null) alphaCommands.Add((command.StartTime + loop.LoopStartTime, command.StartValue == 0));
}
if (alphaCommands.Count > 0)