This commit is contained in:
goyuken 2015-01-15 03:58:21 +00:00
parent de34d29ac1
commit 76969200a3
1 changed files with 2 additions and 6 deletions

View File

@ -27,15 +27,11 @@ namespace BizHawk.Emulation.Common
}
// add the actual instantiated type and any types in the hierarchy
while (coreType != null)
// except for object because that would be dumb (or would it?)
while (coreType != typeof(object))
{
Services.Add(coreType, core);
coreType = coreType.BaseType;
if (coreType == typeof(object)) // Don't register object
{
coreType = null;
}
}
}