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:
parent
0e34b36fbc
commit
997558076f
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue