From 2cf14db2eced918f8fcd0233126e8c62de668c89 Mon Sep 17 00:00:00 2001 From: adelikat Date: Wed, 7 Dec 2016 12:35:46 -0600 Subject: [PATCH] Intellivision - add IStatable to Intellvision.cs, because it is nice to have all the interface implementations in one place --- BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.cs b/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.cs index eba55e3b1c..182d21dcd5 100644 --- a/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.cs +++ b/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.cs @@ -14,7 +14,7 @@ namespace BizHawk.Emulation.Cores.Intellivision isReleased: false )] [ServiceNotApplicable(typeof(ISaveRam))] - public sealed partial class Intellivision : IEmulator, ISettable + public sealed partial class Intellivision : IEmulator, IStatable, ISettable { [CoreConstructor("INTV")] public Intellivision(CoreComm comm, GameInfo game, byte[] rom, object Settings, object SyncSettings)