From f614e418344a7526eed8b7363bec03cd1366603d Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Fri, 14 May 2021 12:42:34 +1000 Subject: [PATCH] Use mnemonic instead of long name for system menu fixes 553319ec9 --- src/BizHawk.Client.EmuHawk/MainForm.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/MainForm.cs b/src/BizHawk.Client.EmuHawk/MainForm.cs index f46c9f0022..679fe29a7a 100644 --- a/src/BizHawk.Client.EmuHawk/MainForm.cs +++ b/src/BizHawk.Client.EmuHawk/MainForm.cs @@ -1993,9 +1993,9 @@ namespace BizHawk.Client.EmuHawk { GenericCoreSubMenu.Visible = 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 - GenericCoreSubMenu.Text = $"&{Emulator.GetSystemDisplayName()}"; + GenericCoreSubMenu.Text = $"&{Emulator.SystemId}"; #endif GenericCoreSubMenu.DropDownItems.Clear();