Use mnemonic instead of long name for system menu

fixes 553319ec9
This commit is contained in:
YoshiRulz 2021-05-14 12:42:34 +10:00
parent a357da360e
commit f614e41834
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 2 additions and 2 deletions

View File

@ -1993,9 +1993,9 @@ namespace BizHawk.Client.EmuHawk
{ {
GenericCoreSubMenu.Visible = true; GenericCoreSubMenu.Visible = true;
#if true #if true
GenericCoreSubMenu.Text = Emulator.GetSystemDisplayName(); GenericCoreSubMenu.Text = Emulator.SystemId;
#else //TODO accelerator; I commented out this naive approach which doesn't work --yoshi #else //TODO accelerator; I commented out this naive approach which doesn't work --yoshi
GenericCoreSubMenu.Text = $"&{Emulator.GetSystemDisplayName()}"; GenericCoreSubMenu.Text = $"&{Emulator.SystemId}";
#endif #endif
GenericCoreSubMenu.DropDownItems.Clear(); GenericCoreSubMenu.DropDownItems.Clear();