remove setters from IMemoryDomains MainMemory and SystemBus properties, those shoudln't be set by the calling code, nor were they being used
This commit is contained in:
parent
4f74f0a2c3
commit
32e632851e
|
@ -17,11 +17,11 @@ namespace BizHawk.Emulation.Common
|
||||||
{
|
{
|
||||||
MemoryDomain this[string name] { get; }
|
MemoryDomain this[string name] { get; }
|
||||||
|
|
||||||
MemoryDomain MainMemory { get; set; }
|
MemoryDomain MainMemory { get; }
|
||||||
|
|
||||||
bool HasSystemBus { get; }
|
bool HasSystemBus { get; }
|
||||||
|
|
||||||
MemoryDomain SystemBus { get; set; }
|
MemoryDomain SystemBus { get; }
|
||||||
|
|
||||||
bool Has(string name);
|
bool Has(string name);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue