remove not implemented IMemoryDomains implemented from PSP, and just not implement the interface instead
This commit is contained in:
parent
295800957c
commit
135752a215
|
@ -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];
|
||||
|
|
Loading…
Reference in New Issue