diff --git a/BizHawk.Emulation.Common/Extensions.cs b/BizHawk.Emulation.Common/Extensions.cs index 5c16fe6d22..cdb3a3e54c 100644 --- a/BizHawk.Emulation.Common/Extensions.cs +++ b/BizHawk.Emulation.Common/Extensions.cs @@ -268,14 +268,7 @@ namespace BizHawk.Emulation.Common.IEmulatorExtensions return false; } - try - { - d.PokeByte(0, d.PeekByte(0)); - } - catch (NotImplementedException) - { - return false; - } + //once upon a time, we did a try { poke(peek) } here, but that was before Writable was added. the poke(peek) is not acceptable. If there are further problems, make sure Writable is correct. return true; }