From 135752a21577815982caf3e370281ff058845c90 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 30 Nov 2014 15:46:55 +0000 Subject: [PATCH] remove not implemented IMemoryDomains implemented from PSP, and just not implement the interface instead --- BizHawk.Emulation.Cores/Consoles/Sony/PSP/PSP.cs | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Sony/PSP/PSP.cs b/BizHawk.Emulation.Cores/Consoles/Sony/PSP/PSP.cs index 675d2ced5e..f808b966e1 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sony/PSP/PSP.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sony/PSP/PSP.cs @@ -14,7 +14,7 @@ namespace BizHawk.Emulation.Cores.Sony.PSP isPorted: true, isReleased: false )] - public class PSP : IEmulator, IVideoProvider, ISyncSoundProvider, IMemoryDomains + public class PSP : IEmulator, IVideoProvider, ISyncSoundProvider { public static readonly ControllerDefinition PSPController = new ControllerDefinition { @@ -175,12 +175,6 @@ namespace BizHawk.Emulation.Cores.Sony.PSP return new byte[0]; } - [FeatureNotImplemented] - public MemoryDomainList MemoryDomains - { - get { throw new NotImplementedException(); } - } - const int screenwidth = 480; const int screenheight = 272; readonly int[] screenbuffer = new int[screenwidth * screenheight];