1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 14:12:55 +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,
Scale = Scale,
ComboColour = ComboColour,
Samples = new SampleInfoList(RepeatSamples.ElementAt(repeat))
Samples = new SampleInfoList(RepeatSamples[repeat])
});
}
}