Fix compliance with SA1142 (don't access ValueTuple fields as ItemN)

This commit is contained in:
YoshiRulz 2021-04-04 14:16:41 +10:00
parent 26eaa22be2
commit aab0dd582d
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 3 additions and 3 deletions

View File

@ -184,12 +184,12 @@ namespace BizHawk.Client.EmuHawk
PathTabControl.TabPages.Clear();
var systems = _pathEntries.Select(e => e.System).Distinct() // group entries by "system" (intentionally using instance field here, not parameter)
.Select(sys => (sys, PathEntryCollection.GetDisplayNameFor(sys)))
.OrderBy(tuple => tuple.Item2) // sorted alphabetically by display name
.Select(sys => (SysGroup: sys, DisplayName: PathEntryCollection.GetDisplayNameFor(sys)))
.OrderBy(tuple => tuple.DisplayName)
.ToList();
// add the Global tab first...
const string idGlobal = "Global_NULL";
systems.RemoveAll(tuple => tuple.Item1 == idGlobal);
systems.RemoveAll(tuple => tuple.SysGroup == idGlobal);
AddTabPageForSystem(idGlobal, PathEntryCollection.GetDisplayNameFor(idGlobal));
// ...then continue with the others
foreach (var (sys, dispName) in systems) AddTabPageForSystem(sys, dispName);