Return correct CPU name from GBDisassembler (Gambatte)

fixes b0095927b
This commit is contained in:
YoshiRulz 2021-05-06 22:33:58 +10:00
parent db97427ae1
commit d570cc2fcc
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
2 changed files with 2 additions and 8 deletions

View File

@ -744,10 +744,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
{
public bool UseRGBDSSyntax;
public override IEnumerable<string> AvailableCpus
{
get { yield return "LR35902"; }
}
public override IEnumerable<string> AvailableCpus { get; } = new[] { "LR35902" };
public override string PCRegisterName => "PC";

View File

@ -9,10 +9,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy
{
public bool UseRGBDSSyntax;
public override IEnumerable<string> AvailableCpus
{
get { yield return "Z80GB"; }
}
public override IEnumerable<string> AvailableCpus { get; } = new[] { "LR35902" };
public override string PCRegisterName => "PC";