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:
adelikat 2020-03-19 14:50:04 -05:00
parent 4f74f0a2c3
commit 32e632851e
1 changed files with 2 additions and 2 deletions

View File

@ -17,11 +17,11 @@ namespace BizHawk.Emulation.Common
{
MemoryDomain this[string name] { get; }
MemoryDomain MainMemory { get; set; }
MemoryDomain MainMemory { get; }
bool HasSystemBus { get; }
MemoryDomain SystemBus { get; set; }
MemoryDomain SystemBus { get; }
bool Has(string name);
}