We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e734c88 commit 6e10064Copy full SHA for 6e10064
src/BizHawk.Client.EmuHawk/tools/MultiDiskBundler/MultiDiskBundler.cs
@@ -32,6 +32,12 @@ public MultiDiskBundler()
32
{
33
InitializeComponent();
34
Icon = ToolIcon;
35
+ SystemDropDown.Format += (_, formatArgs) =>
36
+ {
37
+ var sysID = (string) formatArgs.ListItem;
38
+ var dispName = EmulatorExtensions.SystemIDToDisplayName(sysID);
39
+ formatArgs.Value = string.IsNullOrEmpty(dispName) ? sysID : dispName;
40
+ };
41
SystemDropDown.Items.AddRange([
42
VSystemID.Raw.Amiga,
43
VSystemID.Raw.AmstradCPC,
0 commit comments