From a898599e69483cb16d2be584d41d0a14e7db913c Mon Sep 17 00:00:00 2001 From: adelikat Date: Fri, 9 Dec 2016 10:28:27 -0600 Subject: [PATCH] NullEmulator - document non-applicable services --- BizHawk.Emulation.Common/Base Implementations/NullEmulator.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BizHawk.Emulation.Common/Base Implementations/NullEmulator.cs b/BizHawk.Emulation.Common/Base Implementations/NullEmulator.cs index 1c857150a6..27d7aaac6e 100644 --- a/BizHawk.Emulation.Common/Base Implementations/NullEmulator.cs +++ b/BizHawk.Emulation.Common/Base Implementations/NullEmulator.cs @@ -7,6 +7,8 @@ using System.ComponentModel; 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))] public class NullEmulator : IEmulator, IVideoProvider, ISyncSoundProvider, IAsyncSoundProvider, ISettable { public NullEmulator(CoreComm comm, object settings)