Remove custom loader code for ChannelF
This commit is contained in:
parent
5c5ffed5ff
commit
744a9a97d0
|
@ -519,13 +519,6 @@ namespace BizHawk.Client.Common
|
||||||
game.System = "SGB";
|
game.System = "SGB";
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case "ChannelF":
|
|
||||||
nextEmulator = new ChannelF(
|
|
||||||
nextComm,
|
|
||||||
game,
|
|
||||||
rom.FileData
|
|
||||||
);
|
|
||||||
return;
|
|
||||||
case "Arcade":
|
case "Arcade":
|
||||||
nextEmulator = new MAME(
|
nextEmulator = new MAME(
|
||||||
file.Directory,
|
file.Directory,
|
||||||
|
|
|
@ -11,6 +11,7 @@ namespace BizHawk.Emulation.Cores.Consoles.ChannelF
|
||||||
[ServiceNotApplicable(new[] { typeof(IDriveLight) })]
|
[ServiceNotApplicable(new[] { typeof(IDriveLight) })]
|
||||||
public partial class ChannelF
|
public partial class ChannelF
|
||||||
{
|
{
|
||||||
|
[CoreConstructor("ChannelF")]
|
||||||
public ChannelF(CoreComm comm, GameInfo game, byte[] rom)
|
public ChannelF(CoreComm comm, GameInfo game, byte[] rom)
|
||||||
{
|
{
|
||||||
var ser = new BasicServiceProvider(this);
|
var ser = new BasicServiceProvider(this);
|
||||||
|
|
Loading…
Reference in New Issue