From 5d5a4d10f2e6e767ebc4cc63546658e6c8a6a16c Mon Sep 17 00:00:00 2001 From: adelikat Date: Fri, 17 Apr 2015 15:21:19 +0000 Subject: [PATCH] Ram Search - make IInputPollable an optional service not a required one --- BizHawk.Client.EmuHawk/tools/Watch/RamSearch.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/Watch/RamSearch.cs b/BizHawk.Client.EmuHawk/tools/Watch/RamSearch.cs index df0b5bbcc7..3a407529ec 100644 --- a/BizHawk.Client.EmuHawk/tools/Watch/RamSearch.cs +++ b/BizHawk.Client.EmuHawk/tools/Watch/RamSearch.cs @@ -70,7 +70,7 @@ namespace BizHawk.Client.EmuHawk [RequiredService] public IEmulator Emu { get; set; } - [RequiredService] + [OptionalService] public IInputPollable InputPollableCore { get; set; } [ConfigPersist] @@ -270,7 +270,7 @@ namespace BizHawk.Client.EmuHawk if (_autoSearch) { - if (Settings.AutoSearchTakeLagFramesIntoAccount && InputPollableCore.IsLagFrame) + if (InputPollableCore != null && Settings.AutoSearchTakeLagFramesIntoAccount && InputPollableCore.IsLagFrame) { // Do nothing }