1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-30 06:12:58 +08:00

access list with index instead of using LINQ

This commit is contained in:
Aergwyn 2017-12-23 13:30:44 +01:00
parent c5aba9f247
commit 47c75d01ce

View File

@ -170,7 +170,7 @@ namespace osu.Game.Rulesets.Osu.Objects
StackHeight = StackHeight, StackHeight = StackHeight,
Scale = Scale, Scale = Scale,
ComboColour = ComboColour, ComboColour = ComboColour,
Samples = new SampleInfoList(RepeatSamples.ElementAt(repeat)) Samples = new SampleInfoList(RepeatSamples[repeat])
}); });
} }
} }