If a core has no system bus, default to main memory if SystemBus is requested, fixes cheat dialog from blowing up on a bunch of cores with no system bus defined

This commit is contained in:
adelikat 2015-03-05 01:07:31 +00:00
parent 0e34b36fbc
commit 997558076f
1 changed files with 8 additions and 1 deletions

View File

@ -270,7 +270,14 @@ namespace BizHawk.Emulation.Common
return _systemBus;
}
return this.FirstOrDefault(x => x.Name == "System Bus");
var bus = this.FirstOrDefault(x => x.Name == "System Bus");
if (bus != null)
{
return bus;
}
return MainMemory;
}
set