rename TurboTurboNyma and LibTerboGrafixSanic to HyperNyma.. I think
This commit is contained in:
parent
038ab125fd
commit
d28f827b06
|
@ -353,12 +353,12 @@ namespace BizHawk.Client.Common
|
|||
GetCoreSettings<PCEngine>(),
|
||||
GetCoreSyncSettings<PCEngine>()
|
||||
),
|
||||
// CoreNames.TurboTurboNyma => new TerboGrafixSanic(
|
||||
// CoreNames.HyperNyma => new HyperNyma(
|
||||
// game,
|
||||
// new[] { disc },
|
||||
// nextComm,
|
||||
// (NymaCore.NymaSettings) GetCoreSettings<TerboGrafixSanic>(),
|
||||
// (NymaCore.NymaSyncSettings) GetCoreSyncSettings<TerboGrafixSanic>(),
|
||||
// (NymaCore.NymaSettings) GetCoreSettings<HyperNyma>(),
|
||||
// (NymaCore.NymaSyncSettings) GetCoreSyncSettings<HyperNyma>(),
|
||||
// Deterministic
|
||||
// ),
|
||||
_ => new TerboGrafix(
|
||||
|
|
|
@ -47,7 +47,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
{
|
||||
Snes9x _ => PromptToSwitchCore(CoreNames.Snes9X, CoreNames.Bsnes, () => GlobalWin.Config.PreferredCores["SNES"] = CoreNames.Bsnes),
|
||||
QuickNES _ => PromptToSwitchCore(CoreNames.QuickNes, CoreNames.NesHawk, () => GlobalWin.Config.PreferredCores["NES"] = CoreNames.NesHawk),
|
||||
TerboGrafixSanic _ => PromptToSwitchCore(CoreNames.TurboTurboNyma, CoreNames.TurboNyma, () => GlobalWin.Config.PreferredCores["NES"] = CoreNames.NesHawk),
|
||||
HyperNyma _ => PromptToSwitchCore(CoreNames.HyperNyma, CoreNames.TurboNyma, () => GlobalWin.Config.PreferredCores["NES"] = CoreNames.NesHawk),
|
||||
_ => true
|
||||
};
|
||||
}
|
||||
|
|
|
@ -44,7 +44,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
(new[] { "SNES" }, new[] { CoreNames.Faust, CoreNames.Snes9X, CoreNames.Bsnes }),
|
||||
(new[] { "SGB" }, new[] { CoreNames.Bsnes, CoreNames.SameBoy }),
|
||||
(new[] { "GB", "GBC" }, new[] { CoreNames.Gambatte, CoreNames.GbHawk, CoreNames.SubGbHawk }),
|
||||
(new[] { "PCE", "PCECD", "SGX" }, new[] { CoreNames.TurboTurboNyma, CoreNames.PceHawk, CoreNames.TurboNyma })
|
||||
(new[] { "PCE", "PCECD", "SGX" }, new[] { CoreNames.HyperNyma, CoreNames.PceHawk, CoreNames.TurboNyma })
|
||||
};
|
||||
|
||||
private void MainForm_Load(object sender, EventArgs e)
|
||||
|
|
|
@ -11,19 +11,19 @@ using BizHawk.Emulation.DiscSystem;
|
|||
|
||||
namespace BizHawk.Emulation.Cores.Consoles.NEC.PCE
|
||||
{
|
||||
[Core(CoreNames.TurboTurboNyma, "Mednafen Team", true, true, "1.24.3", "https://mednafen.github.io/releases/", false)]
|
||||
public class TerboGrafixSanic : NymaCore, IRegionable, IPceGpuView
|
||||
[Core(CoreNames.HyperNyma, "Mednafen Team", true, true, "1.24.3", "https://mednafen.github.io/releases/", false)]
|
||||
public class HyperNyma : NymaCore, IRegionable, IPceGpuView
|
||||
{
|
||||
private readonly LibTerboGrafixSanic _terboGrafix;
|
||||
private readonly LibHyperNyma _terboGrafix;
|
||||
|
||||
[CoreConstructor(new[] { "PCE", "SGX" })]
|
||||
public TerboGrafixSanic(GameInfo game, byte[] rom, CoreComm comm, string extension,
|
||||
public HyperNyma(GameInfo game, byte[] rom, CoreComm comm, string extension,
|
||||
NymaSettings settings, NymaSyncSettings syncSettings, bool deterministic)
|
||||
: base(comm, "PCE", "PC Engine Controller", settings, syncSettings)
|
||||
{
|
||||
_terboGrafix = DoInit<LibTerboGrafixSanic>(game, rom, null, "pce-fast.wbx", extension, deterministic);
|
||||
_terboGrafix = DoInit<LibHyperNyma>(game, rom, null, "pce-fast.wbx", extension, deterministic);
|
||||
}
|
||||
public TerboGrafixSanic(GameInfo game, Disc[] discs, CoreComm comm,
|
||||
public HyperNyma(GameInfo game, Disc[] discs, CoreComm comm,
|
||||
NymaSettings settings, NymaSyncSettings syncSettings, bool deterministic)
|
||||
: base(comm, "PCE", "PC Engine Controller", settings, syncSettings)
|
||||
{
|
||||
|
@ -31,7 +31,7 @@ namespace BizHawk.Emulation.Cores.Consoles.NEC.PCE
|
|||
{
|
||||
{ "FIRMWARE:syscard3.pce", comm.CoreFileProvider.GetFirmware("PCECD", "Bios", true) },
|
||||
};
|
||||
_terboGrafix = DoInit<LibTerboGrafixSanic>(game, null, discs, "pce-fast.wbx", null, deterministic, firmwares);
|
||||
_terboGrafix = DoInit<LibHyperNyma>(game, null, discs, "pce-fast.wbx", null, deterministic, firmwares);
|
||||
}
|
||||
|
||||
public override string SystemId => IsSgx ? "SGX" : "PCE";
|
||||
|
@ -77,7 +77,7 @@ namespace BizHawk.Emulation.Cores.Consoles.NEC.PCE
|
|||
}
|
||||
}
|
||||
|
||||
public abstract class LibTerboGrafixSanic : LibNymaCore
|
||||
public abstract class LibHyperNyma : LibNymaCore
|
||||
{
|
||||
[BizImport(CallingConvention.Cdecl, Compatibility = true)]
|
||||
public abstract void GetVramInfo([Out]PceGpuData v, int vdcIndex);
|
|
@ -22,7 +22,7 @@ namespace BizHawk.Emulation.Cores
|
|||
public const string Gpgx = "Genplus-gx";
|
||||
public const string PceHawk = "PCEHawk";
|
||||
public const string TurboNyma = "TurboNyma";
|
||||
public const string TurboTurboNyma = "TurboTurboNyma";
|
||||
public const string HyperNyma = "HyperNyma";
|
||||
public const string Faust = "Faust";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue