dual gameboy: fix XML generation and core preference selection
This commit is contained in:
parent
7e7713c955
commit
39f6668f18
|
@ -300,6 +300,7 @@ namespace BizHawk.Client.Common
|
||||||
["SNES"] = CoreNames.Snes9X,
|
["SNES"] = CoreNames.Snes9X,
|
||||||
["GB"] = CoreNames.Gambatte,
|
["GB"] = CoreNames.Gambatte,
|
||||||
["GBC"] = CoreNames.Gambatte,
|
["GBC"] = CoreNames.Gambatte,
|
||||||
|
["DGB"] = CoreNames.DualGambatte,
|
||||||
["SGB"] = CoreNames.SameBoy,
|
["SGB"] = CoreNames.SameBoy,
|
||||||
["PCE"] = CoreNames.TurboNyma,
|
["PCE"] = CoreNames.TurboNyma,
|
||||||
["PCECD"] = CoreNames.TurboNyma,
|
["PCECD"] = CoreNames.TurboNyma,
|
||||||
|
|
|
@ -47,6 +47,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
(new[] { "SNES" }, new[] { CoreNames.Faust, CoreNames.Snes9X, CoreNames.Bsnes }),
|
(new[] { "SNES" }, new[] { CoreNames.Faust, CoreNames.Snes9X, CoreNames.Bsnes }),
|
||||||
(new[] { "SGB" }, new[] { CoreNames.SameBoy, CoreNames.Bsnes }),
|
(new[] { "SGB" }, new[] { CoreNames.SameBoy, CoreNames.Bsnes }),
|
||||||
(new[] { "GB", "GBC" }, new[] { CoreNames.Gambatte, CoreNames.GbHawk, CoreNames.SubGbHawk }),
|
(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 })
|
(new[] { "PCE", "PCECD", "SGX" }, new[] { CoreNames.TurboNyma, CoreNames.HyperNyma, CoreNames.PceHawk })
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -139,7 +139,7 @@
|
||||||
this.SystemDropDown.Items.AddRange(new object[] {
|
this.SystemDropDown.Items.AddRange(new object[] {
|
||||||
"AppleII",
|
"AppleII",
|
||||||
"C64",
|
"C64",
|
||||||
"GB",
|
"DGB",
|
||||||
"GB3x",
|
"GB3x",
|
||||||
"GB4x",
|
"GB4x",
|
||||||
"GEN",
|
"GEN",
|
||||||
|
|
|
@ -24,5 +24,7 @@ namespace BizHawk.Emulation.Cores
|
||||||
public const string TurboNyma = "TurboNyma";
|
public const string TurboNyma = "TurboNyma";
|
||||||
public const string HyperNyma = "HyperNyma";
|
public const string HyperNyma = "HyperNyma";
|
||||||
public const string Faust = "Faust";
|
public const string Faust = "Faust";
|
||||||
|
public const string DualGambatte = "DualGambatte";
|
||||||
|
public const string GBHawkLink = "GBHawkLink";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue