Intellivision - add IStatable to Intellvision.cs, because it is nice to have all the interface implementations in one place

This commit is contained in:
adelikat 2016-12-07 12:35:46 -06:00
parent 6b02e9d551
commit 2cf14db2ec
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ namespace BizHawk.Emulation.Cores.Intellivision
isReleased: false
)]
[ServiceNotApplicable(typeof(ISaveRam))]
public sealed partial class Intellivision : IEmulator, ISettable<Intellivision.IntvSettings, Intellivision.IntvSyncSettings>
public sealed partial class Intellivision : IEmulator, IStatable, ISettable<Intellivision.IntvSettings, Intellivision.IntvSyncSettings>
{
[CoreConstructor("INTV")]
public Intellivision(CoreComm comm, GameInfo game, byte[] rom, object Settings, object SyncSettings)