From 8a35fa5bcd8110558315ade80f966d8818b92788 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 16 Feb 2020 15:14:23 -0600 Subject: [PATCH] core feature analysis - hack to not show ITextStatable --- BizHawk.Client.EmuHawk/CoreFeatureAnalysis.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/BizHawk.Client.EmuHawk/CoreFeatureAnalysis.cs b/BizHawk.Client.EmuHawk/CoreFeatureAnalysis.cs index f8ea328934..4675e0092b 100644 --- a/BizHawk.Client.EmuHawk/CoreFeatureAnalysis.cs +++ b/BizHawk.Client.EmuHawk/CoreFeatureAnalysis.cs @@ -160,6 +160,7 @@ namespace BizHawk.Client.EmuHawk .GetTypes() .Where(t => typeof(IEmulatorService).IsAssignableFrom(t)) .Where(t => t != typeof(IEmulatorService)) + .Where(t => t != typeof(ITextStatable)) // Hack for now, eventually we can get rid of this interface in favor of a default implementation .Where(t => t.IsInterface); var additionalServices = knownServices