diff --git a/src/BizHawk.Client.Common/RomLoader.cs b/src/BizHawk.Client.Common/RomLoader.cs index e4b5d4ca40..40178ef850 100644 --- a/src/BizHawk.Client.Common/RomLoader.cs +++ b/src/BizHawk.Client.Common/RomLoader.cs @@ -519,13 +519,6 @@ namespace BizHawk.Client.Common game.System = "SGB"; } break; - case "ChannelF": - nextEmulator = new ChannelF( - nextComm, - game, - rom.FileData - ); - return; case "Arcade": nextEmulator = new MAME( file.Directory, diff --git a/src/BizHawk.Emulation.Cores/Consoles/Fairchild/ChannelF/ChannelF.cs b/src/BizHawk.Emulation.Cores/Consoles/Fairchild/ChannelF/ChannelF.cs index 6a0cb384df..cdb0be8326 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Fairchild/ChannelF/ChannelF.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Fairchild/ChannelF/ChannelF.cs @@ -11,6 +11,7 @@ namespace BizHawk.Emulation.Cores.Consoles.ChannelF [ServiceNotApplicable(new[] { typeof(IDriveLight) })] public partial class ChannelF { + [CoreConstructor("ChannelF")] public ChannelF(CoreComm comm, GameInfo game, byte[] rom) { var ser = new BasicServiceProvider(this);