From 34d1e4fe578c908b655682550a05e3eafcc1d377 Mon Sep 17 00:00:00 2001 From: adelikat Date: Fri, 5 May 2017 09:54:46 -0500 Subject: [PATCH] NullEmulator - add a ServiceNotApplicable decoration --- BizHawk.Emulation.Common/Base Implementations/NullEmulator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Common/Base Implementations/NullEmulator.cs b/BizHawk.Emulation.Common/Base Implementations/NullEmulator.cs index 939d43acfc..a6f22f5be4 100644 --- a/BizHawk.Emulation.Common/Base Implementations/NullEmulator.cs +++ b/BizHawk.Emulation.Common/Base Implementations/NullEmulator.cs @@ -9,7 +9,7 @@ namespace BizHawk.Emulation.Common { [CoreAttributes("NullHawk", "", false, true)] [ServiceNotApplicable(typeof(IStatable), typeof(ISaveRam), typeof(IDriveLight), typeof(ICodeDataLogger), typeof(IMemoryDomains), - typeof(IDebuggable), typeof(IDisassemblable), typeof(IInputPollable), typeof(IRegionable), typeof(ITraceable))] + typeof(IDebuggable), typeof(IDisassemblable), typeof(IInputPollable), typeof(IRegionable), typeof(ITraceable), typeof(IBoardInfo))] public class NullEmulator : IEmulator, IVideoProvider, ISoundProvider, ISettable { public NullEmulator(CoreComm comm, object settings)