From e1811371e48fa93a281b1d45a1111d77b6d13690 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 25 Jan 2015 16:20:53 +0000 Subject: [PATCH] Cheats - only allow writable domains in the domains dropdown --- BizHawk.Client.EmuHawk/tools/Cheats/CheatEdit.cs | 2 ++ BizHawk.Emulation.Common/Extensions.cs | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/Cheats/CheatEdit.cs b/BizHawk.Client.EmuHawk/tools/Cheats/CheatEdit.cs index dfed83c90d..3543d3af04 100644 --- a/BizHawk.Client.EmuHawk/tools/Cheats/CheatEdit.cs +++ b/BizHawk.Client.EmuHawk/tools/Cheats/CheatEdit.cs @@ -4,6 +4,7 @@ using System.Windows.Forms; using BizHawk.Client.Common; using BizHawk.Emulation.Common; +using BizHawk.Emulation.Common.IEmulatorExtensions; namespace BizHawk.Client.EmuHawk { @@ -35,6 +36,7 @@ namespace BizHawk.Client.EmuHawk { DomainDropDown.Items.Clear(); DomainDropDown.Items.AddRange(MemoryDomains + .Where(d => d.CanPoke()) .Select(d => d.ToString()) .ToArray()); diff --git a/BizHawk.Emulation.Common/Extensions.cs b/BizHawk.Emulation.Common/Extensions.cs index 6db004c83e..ed73ed2bfc 100644 --- a/BizHawk.Emulation.Common/Extensions.cs +++ b/BizHawk.Emulation.Common/Extensions.cs @@ -180,8 +180,6 @@ namespace BizHawk.Emulation.Common.IEmulatorExtensions } return true; - - } // TODO: a better place for these