remove not implemented IMemoryDomains implemented from PSP, and just not implement the interface instead

This commit is contained in:
adelikat 2014-11-30 15:46:55 +00:00
parent 295800957c
commit 135752a215
1 changed files with 1 additions and 7 deletions

View File

@ -14,7 +14,7 @@ namespace BizHawk.Emulation.Cores.Sony.PSP
isPorted: true, isPorted: true,
isReleased: false isReleased: false
)] )]
public class PSP : IEmulator, IVideoProvider, ISyncSoundProvider, IMemoryDomains public class PSP : IEmulator, IVideoProvider, ISyncSoundProvider
{ {
public static readonly ControllerDefinition PSPController = new ControllerDefinition public static readonly ControllerDefinition PSPController = new ControllerDefinition
{ {
@ -175,12 +175,6 @@ namespace BizHawk.Emulation.Cores.Sony.PSP
return new byte[0]; return new byte[0];
} }
[FeatureNotImplemented]
public MemoryDomainList MemoryDomains
{
get { throw new NotImplementedException(); }
}
const int screenwidth = 480; const int screenwidth = 480;
const int screenheight = 272; const int screenheight = 272;
readonly int[] screenbuffer = new int[screenwidth * screenheight]; readonly int[] screenbuffer = new int[screenwidth * screenheight];