Hide ISpecializedEmulatorService from CoreFeatureAnalysis UI
This commit is contained in:
parent
ed4ddb13ce
commit
25b7be70bc
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue