Cheats dialog - default to System Bus domain

This commit is contained in:
adelikat 2014-09-13 14:21:08 +00:00
parent de09aadc0e
commit 1693a2a1ed
2 changed files with 25 additions and 1 deletions

View File

@ -37,7 +37,15 @@ namespace BizHawk.Client.EmuHawk
DomainDropDown.Items.AddRange(Core.MemoryDomains
.Select(d => d.ToString())
.ToArray());
DomainDropDown.SelectedItem = Core.MemoryDomains.MainMemory.ToString();
if (Core.MemoryDomains.HasSystemBus)
{
DomainDropDown.SelectedItem = Core.MemoryDomains.SystemBus.ToString();
}
else
{
DomainDropDown.SelectedItem = Core.MemoryDomains.MainMemory.ToString();
}
}
SetFormToDefault();

View File

@ -214,5 +214,21 @@ namespace BizHawk.Emulation.Common
return this[_mainMemoryIndex];
}
}
public bool HasSystemBus
{
get
{
return this.Any(x => x.Name == "System Bus" || x.Name == "BUS"); // Have to account for "BUS" because some developers don't like consistency!
}
}
public MemoryDomain SystemBus
{
get
{
return this.FirstOrDefault(x => x.Name == "System Bus" || x.Name == "BUS");
}
}
}
}