diff --git a/src/BizHawk.Client.EmuHawk/MainForm.Events.cs b/src/BizHawk.Client.EmuHawk/MainForm.Events.cs index bccbdbc7c5..a797352d11 100644 --- a/src/BizHawk.Client.EmuHawk/MainForm.Events.cs +++ b/src/BizHawk.Client.EmuHawk/MainForm.Events.cs @@ -22,6 +22,7 @@ using BizHawk.Emulation.Cores.Atari.Lynx; using BizHawk.Emulation.Cores.Calculators.Emu83; using BizHawk.Emulation.Cores.Calculators.TI83; using BizHawk.Emulation.Cores.ColecoVision; +using BizHawk.Emulation.Cores.Computers.Amiga; using BizHawk.Emulation.Cores.Computers.AmstradCPC; using BizHawk.Emulation.Cores.Computers.AppleII; using BizHawk.Emulation.Cores.Computers.Commodore64; @@ -2928,6 +2929,9 @@ namespace BizHawk.Client.EmuHawk // PicoDrive items.Add(CreateCoreSubmenu(VSystemCategory.Consoles, CoreNames.PicoDrive, CreateGenericCoreConfigItem(CoreNames.PicoDrive))); + // PUAE + items.Add(CreateCoreSubmenu(VSystemCategory.PCs, CoreNames.PUAE, CreateGenericCoreConfigItem(CoreNames.PUAE))); + // QuickNes var quickNesGamepadSettingsItem = CreateSettingsItem("Controller Settings...", (_, _) => OpenQuickNesGamepadSettingsDialog(GetSettingsAdapterFor())); var quickNesSubmenu = CreateCoreSubmenu( diff --git a/src/BizHawk.Client.EmuHawk/MainForm.cs b/src/BizHawk.Client.EmuHawk/MainForm.cs index 620a0af19c..2e7b66ed2c 100644 --- a/src/BizHawk.Client.EmuHawk/MainForm.cs +++ b/src/BizHawk.Client.EmuHawk/MainForm.cs @@ -144,7 +144,7 @@ namespace BizHawk.Client.EmuHawk }; ToolStripMenuItemEx consolesCoreSettingsSubmenu = new() { Text = "For Consoles" }; ToolStripMenuItemEx handheldsCoreSettingsSubmenu = new() { Text = "For Handhelds" }; - ToolStripMenuItemEx pcsCoreSettingsSubmenu = new() { Text = "For PCs" }; + ToolStripMenuItemEx pcsCoreSettingsSubmenu = new() { Text = "For Computers" }; ToolStripMenuItemEx otherCoreSettingsSubmenu = new() { Text = "Other" }; foreach (var submenu in CreateCoreSettingsSubmenus(includeDupes: true).OrderBy(submenu => submenu.Text)) {