Hide ISpecializedEmulatorService from CoreFeatureAnalysis UI

This commit is contained in:
YoshiRulz 2020-10-14 08:43:41 +10:00
parent ed4ddb13ce
commit 25b7be70bc
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ namespace BizHawk.Client.EmuHawk
var knownServices = Emulation.Common.ReflectionCache.Types
.Where(t => typeof(IEmulatorService).IsAssignableFrom(t))
.Where(t => t != typeof(IEmulatorService))
.Where(t => t != typeof(IEmulatorService) && t != typeof(ISpecializedEmulatorService))
.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);