diff --git a/src/BizHawk.Client.Common/config/Config.cs b/src/BizHawk.Client.Common/config/Config.cs index 780793f3bc..ccd9d7ea88 100644 --- a/src/BizHawk.Client.Common/config/Config.cs +++ b/src/BizHawk.Client.Common/config/Config.cs @@ -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 diff --git a/src/BizHawk.Emulation.Cores/Consoles/NEC/PCE/TerboGrafix.cs b/src/BizHawk.Emulation.Cores/Consoles/NEC/PCE/TerboGrafix.cs index d0cf6e317d..e06082bf0d 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/NEC/PCE/TerboGrafix.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/NEC/PCE/TerboGrafix.cs @@ -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")] diff --git a/src/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.cs b/src/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.cs index 823393cd9a..cf7634674a 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.cs @@ -12,7 +12,7 @@ namespace BizHawk.Emulation.Cores.PCEngine public enum NecSystemType { TurboGrafx, TurboCD, SuperGrafx } [Core( - "PCEHawk", + CoreNames.PceHawk, "Vecna", isPorted: false, isReleased: true)] diff --git a/src/BizHawk.Emulation.Cores/CoreNames.cs b/src/BizHawk.Emulation.Cores/CoreNames.cs index 363d361d2f..e30905e00e 100644 --- a/src/BizHawk.Emulation.Cores/CoreNames.cs +++ b/src/BizHawk.Emulation.Cores/CoreNames.cs @@ -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"; } }