From 76969200a33da8de3768482c34e13a9cb75751b7 Mon Sep 17 00:00:00 2001 From: goyuken Date: Thu, 15 Jan 2015 03:58:21 +0000 Subject: [PATCH] cleanup --- .../Base Implementations/BasicServiceProvider.cs | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/BizHawk.Emulation.Common/Base Implementations/BasicServiceProvider.cs b/BizHawk.Emulation.Common/Base Implementations/BasicServiceProvider.cs index 57aff7fd44..2a7fa0edf1 100644 --- a/BizHawk.Emulation.Common/Base Implementations/BasicServiceProvider.cs +++ b/BizHawk.Emulation.Common/Base Implementations/BasicServiceProvider.cs @@ -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; - } } }