From 7ffe07c44b67d476e78121f004a2eadd18def0ba Mon Sep 17 00:00:00 2001 From: adelikat Date: Thu, 4 Dec 2014 00:38:42 +0000 Subject: [PATCH] Emulation.Common IsImplemented extensions - fix logic, if FeatureNotImplemented exists it is always considered not implemented --- BizHawk.Emulation.Common/Extensions.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/BizHawk.Emulation.Common/Extensions.cs b/BizHawk.Emulation.Common/Extensions.cs index 75f6c68be0..be780724b6 100644 --- a/BizHawk.Emulation.Common/Extensions.cs +++ b/BizHawk.Emulation.Common/Extensions.cs @@ -41,9 +41,9 @@ namespace BizHawk.Emulation.Common.IEmulatorExtensions public static bool IsImplemented(this MethodInfo info) { // If a method is marked as Not implemented, it is not implemented no matter what the body is - if (info.GetCustomAttributes(false).OfType().Any()) + if (info.GetCustomAttributes(false).Any(a => a is FeatureNotImplemented)) { - return true; + return false; } // If a method is not marked but all it does is throw an exception, consider it not implemented @@ -52,7 +52,7 @@ namespace BizHawk.Emulation.Common.IEmulatorExtensions public static bool IsImplemented(this PropertyInfo info) { - return !info.GetCustomAttributes(false).OfType().Any(); + return !info.GetCustomAttributes(false).Any(a => a is FeatureNotImplemented); } } }