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")]
|
||||
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)
|
||||
{
|
||||
// this can influence some things internally
|
||||
|
|
|
@ -60,7 +60,6 @@ namespace BizHawk.Emulation.Cores
|
|||
CoreComm comm,
|
||||
GameInfo game,
|
||||
byte[] rom,
|
||||
Disc cd,
|
||||
bool deterministic,
|
||||
object settings,
|
||||
object syncsettings
|
||||
|
@ -70,7 +69,6 @@ namespace BizHawk.Emulation.Cores
|
|||
bp(o, "comm", comm);
|
||||
bp(o, "game", game);
|
||||
bp(o, "rom", rom);
|
||||
bp(o, "cd", cd);
|
||||
bp(o, "deterministic", deterministic);
|
||||
bp(o, "settings", settings);
|
||||
bp(o, "syncsettings", syncsettings);
|
||||
|
|
Loading…
Reference in New Issue