prep work for pce core picker
This commit is contained in:
parent
0caa087684
commit
d9eb9c86ec
|
@ -322,7 +322,9 @@ namespace BizHawk.Client.Common
|
|||
{
|
||||
["NES"] = CoreNames.QuickNes,
|
||||
["SNES"] = CoreNames.Snes9X,
|
||||
["GB"] = CoreNames.Gambatte
|
||||
["GB"] = CoreNames.Gambatte,
|
||||
["PCE"] = CoreNames.PceHawk,
|
||||
["PCECD"] = CoreNames.PceHawk
|
||||
};
|
||||
|
||||
// ReSharper disable once UnusedMember.Global
|
||||
|
|
|
@ -3,7 +3,7 @@ using BizHawk.Emulation.Cores.Waterbox;
|
|||
|
||||
namespace BizHawk.Emulation.Cores.Consoles.NEC.PCE
|
||||
{
|
||||
[Core("Terbo Grafix", "Mednafen Team", true, false, "", "", false)]
|
||||
[Core(CoreNames.TerboGrafix, "Mednafen Team", true, false, "", "", false)]
|
||||
public class TerboGrafix : NymaCore, IRegionable
|
||||
{
|
||||
[CoreConstructor("PCE")]
|
||||
|
|
|
@ -12,7 +12,7 @@ namespace BizHawk.Emulation.Cores.PCEngine
|
|||
public enum NecSystemType { TurboGrafx, TurboCD, SuperGrafx }
|
||||
|
||||
[Core(
|
||||
"PCEHawk",
|
||||
CoreNames.PceHawk,
|
||||
"Vecna",
|
||||
isPorted: false,
|
||||
isReleased: true)]
|
||||
|
|
|
@ -21,5 +21,7 @@ namespace BizHawk.Emulation.Cores
|
|||
public const string SameBoy = "SameBoy";
|
||||
public const string PicoDrive = "PicoDrive";
|
||||
public const string Gpgx = "Genplus-gx";
|
||||
public const string PceHawk = "PCEHawk";
|
||||
public const string TerboGrafix = "Terbo Grafix";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue