File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
src/BizHawk.Client.EmuHawk Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -36,8 +36,9 @@ private void BizBox_Load(object sender, EventArgs e)
36
36
VersionLabel . Text = VersionInfo . GetFullVersionDetails ( ) ;
37
37
DateLabel . Text = VersionInfo . ReleaseDate ;
38
38
( linkLabel2 . Text , linkLabel2 . Tag ) = VersionInfo . GetGitCommitLink ( ) ;
39
- foreach ( var core in CoreInventory . Instance . SystemsFlat . Where ( core => core . CoreAttr . Released )
40
- . OrderByDescending ( core => core . Name . ToLowerInvariant ( ) ) )
39
+ foreach ( var core in CoreInventory . Instance . SystemsFlat
40
+ . OrderBy ( static core => core . CoreAttr . Released )
41
+ . ThenByDescending ( static core => core . Name , StringComparer . InvariantCultureIgnoreCase ) )
41
42
{
42
43
CoreInfoPanel . Controls . Add ( new BizBoxInfoControl ( core . CoreAttr )
43
44
{
You can’t perform that action at this time.
0 commit comments