1
0
Fork 0
mirror of https://github.com/ppy/osu-tools.git synced 2025-06-08 07:17:01 +09:00

Fix various inspections

This commit is contained in:
Dean Herbert 2022-07-24 23:27:38 +09:00
parent 256d10f96c
commit 39857a4f2c
9 changed files with 20 additions and 15 deletions

View file

@ -128,7 +128,7 @@ namespace PerformanceCalculatorGUI.Components
strainLists.Add(skillStrainList.ToArray());
}
var strainMaxValue = strainLists.Max(x => x.Max(x => x.val));
var strainMaxValue = strainLists.Max(list => list.Max(x => x.val));
for (int i = 0; i < skills.Length; i++)
{