From dd651b2ca830183183cd8643fd019597a58af403 Mon Sep 17 00:00:00 2001 From: adelikat Date: Fri, 11 Apr 2014 17:21:45 +0000 Subject: [PATCH] issue #149 fixed - better notion of equals when comparing watch object --- BizHawk.Client.Common/tools/Watch.cs | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/BizHawk.Client.Common/tools/Watch.cs b/BizHawk.Client.Common/tools/Watch.cs index dcc2385738..34382cf8e1 100644 --- a/BizHawk.Client.Common/tools/Watch.cs +++ b/BizHawk.Client.Common/tools/Watch.cs @@ -261,7 +261,12 @@ namespace BizHawk.Client.Common if (obj is Watch) { var watch = obj as Watch; - return this.Domain == watch.Domain && this.Address == watch.Address; + + return this.Domain == watch.Domain && + this.Address == watch.Address && + this.Size == watch.Size && + this.Type == watch.Type && + this.Notes == watch.Notes; } if (obj is Cheat) @@ -286,7 +291,7 @@ namespace BizHawk.Client.Common return false; } - return a.Domain == b.Domain && a.Address == b.Address; + return a.Equals(b); } public static bool operator !=(Watch a, Watch b)