polish up r7867 slightly
This commit is contained in:
parent
1d383a62cc
commit
0e37b01a88
|
@ -52,6 +52,11 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx
|
||||||
};
|
};
|
||||||
|
|
||||||
[CoreConstructor("GEN")]
|
[CoreConstructor("GEN")]
|
||||||
|
public GPGX(CoreComm comm, byte[] rom, object Settings, object SyncSettings)
|
||||||
|
:this(comm, rom, null, Settings, SyncSettings)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
public GPGX(CoreComm comm, byte[] rom, DiscSystem.Disc CD, object Settings, object SyncSettings)
|
public GPGX(CoreComm comm, byte[] rom, DiscSystem.Disc CD, object Settings, object SyncSettings)
|
||||||
{
|
{
|
||||||
// this can influence some things internally
|
// this can influence some things internally
|
||||||
|
|
|
@ -60,7 +60,6 @@ namespace BizHawk.Emulation.Cores
|
||||||
CoreComm comm,
|
CoreComm comm,
|
||||||
GameInfo game,
|
GameInfo game,
|
||||||
byte[] rom,
|
byte[] rom,
|
||||||
Disc cd,
|
|
||||||
bool deterministic,
|
bool deterministic,
|
||||||
object settings,
|
object settings,
|
||||||
object syncsettings
|
object syncsettings
|
||||||
|
@ -70,7 +69,6 @@ namespace BizHawk.Emulation.Cores
|
||||||
bp(o, "comm", comm);
|
bp(o, "comm", comm);
|
||||||
bp(o, "game", game);
|
bp(o, "game", game);
|
||||||
bp(o, "rom", rom);
|
bp(o, "rom", rom);
|
||||||
bp(o, "cd", cd);
|
|
||||||
bp(o, "deterministic", deterministic);
|
bp(o, "deterministic", deterministic);
|
||||||
bp(o, "settings", settings);
|
bp(o, "settings", settings);
|
||||||
bp(o, "syncsettings", syncsettings);
|
bp(o, "syncsettings", syncsettings);
|
||||||
|
|
Loading…
Reference in New Issue