From 60c3734e8c49ca5533a831a6d2294ea401053fb2 Mon Sep 17 00:00:00 2001 From: scrimpeh Date: Sun, 5 Jul 2015 18:55:43 +0200 Subject: [PATCH] Ram Watch - Fix moving up and down blocks of identical Watches --- BizHawk.Client.EmuHawk/tools/Watch/RamWatch.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/Watch/RamWatch.cs b/BizHawk.Client.EmuHawk/tools/Watch/RamWatch.cs index 6976cf1d09..29b874e936 100644 --- a/BizHawk.Client.EmuHawk/tools/Watch/RamWatch.cs +++ b/BizHawk.Client.EmuHawk/tools/Watch/RamWatch.cs @@ -849,7 +849,7 @@ namespace BizHawk.Client.EmuHawk foreach (var index in indexes) { var watch = _watches[index]; - _watches.Remove(watch); + _watches.RemoveAt(index); _watches.Insert(index - 1, watch); } @@ -877,7 +877,7 @@ namespace BizHawk.Client.EmuHawk for (var i = indices.Count - 1; i >= 0; i--) { var watch = _watches[indices[i]]; - _watches.Remove(watch); + _watches.RemoveAt(indices[i]); _watches.Insert(indices[i] + 1, watch); }