From c9958748f14b91c66851921d6e6474af6fc290a3 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 23 Nov 2014 17:22:43 +0000 Subject: [PATCH] Intellivision - remove IMemoryDomain and method, since it simply throws a NotImplementedException --- .../Consoles/Intellivision/Intellivision.cs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.cs b/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.cs index 73246918f4..b70e8e4656 100644 --- a/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.cs +++ b/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.cs @@ -13,7 +13,7 @@ namespace BizHawk.Emulation.Cores.Intellivision isPorted: false, isReleased: false )] - public sealed partial class Intellivision : IEmulator, IMemoryDomains + public sealed partial class Intellivision : IEmulator { byte[] Rom; GameInfo Game; @@ -197,11 +197,6 @@ namespace BizHawk.Emulation.Cores.Intellivision public CoreComm CoreComm { get; private set; } - public MemoryDomainList MemoryDomains - { - get { throw new NotImplementedException(); } - } - public void Dispose() { }