Basic Service Provider - don't register IEmulatorService

This commit is contained in:
adelikat 2015-01-14 23:01:06 +00:00
parent 7e50a065a6
commit de34d29ac1
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ namespace BizHawk.Emulation.Common
Type coreType = core.GetType();
foreach (Type service in coreType.GetInterfaces())
foreach (Type service in coreType.GetInterfaces().Where(t => t != typeof(IEmulatorService)))
{
Services.Add(service, core);
}