Skip to content

Commit 1437bc3

Browse files
committed
Include unreleased cores in About dialog (resolves #4168)
1 parent ced4db4 commit 1437bc3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/BizHawk.Client.EmuHawk/BizBox.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,9 @@ private void BizBox_Load(object sender, EventArgs e)
3636
VersionLabel.Text = VersionInfo.GetFullVersionDetails();
3737
DateLabel.Text = VersionInfo.ReleaseDate;
3838
(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))
4142
{
4243
CoreInfoPanel.Controls.Add(new BizBoxInfoControl(core.CoreAttr)
4344
{

0 commit comments

Comments
 (0)