diff --git a/BizHawk.Client.EmuHawk/MainForm.Designer.cs b/BizHawk.Client.EmuHawk/MainForm.Designer.cs index a4a2aa2a31..4e71ccde35 100644 --- a/BizHawk.Client.EmuHawk/MainForm.Designer.cs +++ b/BizHawk.Client.EmuHawk/MainForm.Designer.cs @@ -1898,21 +1898,18 @@ this.Atari7800CoreSubMenu.Name = "Atari7800CoreSubMenu"; this.Atari7800CoreSubMenu.Size = new System.Drawing.Size(239, 22); this.Atari7800CoreSubMenu.Text = "Atari 7800"; - this.Atari7800CoreSubMenu.DropDownOpened += new System.EventHandler(this.Atari7800CoreSubMenu_DropDownOpened); // // Emu7800CoreMenuItem // this.Emu7800CoreMenuItem.Name = "Emu7800CoreMenuItem"; this.Emu7800CoreMenuItem.Size = new System.Drawing.Size(153, 22); this.Emu7800CoreMenuItem.Text = "EMU7800"; - this.Emu7800CoreMenuItem.Click += new System.EventHandler(this.Atari7800CorePick_Click); // // Atari7800HawkCoreMenuItem // this.Atari7800HawkCoreMenuItem.Name = "Atari7800HawkCoreMenuItem"; this.Atari7800HawkCoreMenuItem.Size = new System.Drawing.Size(153, 22); this.Atari7800HawkCoreMenuItem.Text = "Atari7800Hawk"; - this.Atari7800HawkCoreMenuItem.Click += new System.EventHandler(this.Atari7800CorePick_Click); // // SGBCoreSubmenu // diff --git a/BizHawk.Client.EmuHawk/MainForm.Events.cs b/BizHawk.Client.EmuHawk/MainForm.Events.cs index 48effc94fb..afc062f753 100644 --- a/BizHawk.Client.EmuHawk/MainForm.Events.cs +++ b/BizHawk.Client.EmuHawk/MainForm.Events.cs @@ -6,7 +6,6 @@ using System.Windows.Forms; using BizHawk.Emulation.Common; using BizHawk.Emulation.Common.IEmulatorExtensions; using BizHawk.Emulation.Cores.Atari.A7800Hawk; -using BizHawk.Emulation.Cores.Atari.Atari7800; using BizHawk.Emulation.Cores.Calculators; using BizHawk.Emulation.Cores.ColecoVision; using BizHawk.Emulation.Cores.Nintendo.NES; @@ -1240,21 +1239,6 @@ namespace BizHawk.Client.EmuHawk } } - private void Atari7800CoreSubMenu_DropDownOpened(object sender, EventArgs e) - { - Emu7800CoreMenuItem.Checked = Global.Config.A78_UseEmu7800; - Atari7800HawkCoreMenuItem.Checked = !Global.Config.A78_UseEmu7800; - } - - private void Atari7800CorePick_Click(object sender, EventArgs e) - { - Global.Config.A78_UseEmu7800 ^= true; - if (Emulator.SystemId == "A78") - { - FlagNeedsReboot(); - } - } - private void SGBCoreSubmenu_DropDownOpened(object sender, EventArgs e) { SgbBsnesMenuItem.Checked = Global.Config.SGB_UseBsnes;