polish up r7867 slightly

This commit is contained in:
goyuken 2014-08-23 19:16:47 +00:00
parent 1d383a62cc
commit 0e37b01a88
2 changed files with 5 additions and 2 deletions

View File

@ -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

View File

@ -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);