dual gameboy: fix XML generation and core preference selection

This commit is contained in:
alyosha-tas 2020-09-25 09:12:33 -04:00
parent 7e7713c955
commit 39f6668f18
4 changed files with 5 additions and 1 deletions

View File

@ -300,6 +300,7 @@ namespace BizHawk.Client.Common
["SNES"] = CoreNames.Snes9X,
["GB"] = CoreNames.Gambatte,
["GBC"] = CoreNames.Gambatte,
["DGB"] = CoreNames.DualGambatte,
["SGB"] = CoreNames.SameBoy,
["PCE"] = CoreNames.TurboNyma,
["PCECD"] = CoreNames.TurboNyma,

View File

@ -47,6 +47,7 @@ namespace BizHawk.Client.EmuHawk
(new[] { "SNES" }, new[] { CoreNames.Faust, CoreNames.Snes9X, CoreNames.Bsnes }),
(new[] { "SGB" }, new[] { CoreNames.SameBoy, CoreNames.Bsnes }),
(new[] { "GB", "GBC" }, new[] { CoreNames.Gambatte, CoreNames.GbHawk, CoreNames.SubGbHawk }),
(new[] { "DGB" }, new[] { CoreNames.DualGambatte, CoreNames.GBHawkLink }),
(new[] { "PCE", "PCECD", "SGX" }, new[] { CoreNames.TurboNyma, CoreNames.HyperNyma, CoreNames.PceHawk })
};

View File

@ -139,7 +139,7 @@
this.SystemDropDown.Items.AddRange(new object[] {
"AppleII",
"C64",
"GB",
"DGB",
"GB3x",
"GB4x",
"GEN",

View File

@ -24,5 +24,7 @@ namespace BizHawk.Emulation.Cores
public const string TurboNyma = "TurboNyma";
public const string HyperNyma = "HyperNyma";
public const string Faust = "Faust";
public const string DualGambatte = "DualGambatte";
public const string GBHawkLink = "GBHawkLink";
}
}