From a41f192aa0988cd3faebbebd7f12d5ba04e3333d Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 13 Oct 2013 16:05:28 +0000 Subject: [PATCH] oops, fix freezing of addresses from Ram Search and Ram Watch --- BizHawk.MultiClient/tools/ToolHelpers.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/BizHawk.MultiClient/tools/ToolHelpers.cs b/BizHawk.MultiClient/tools/ToolHelpers.cs index a6ed51b7ad..db8ae9662a 100644 --- a/BizHawk.MultiClient/tools/ToolHelpers.cs +++ b/BizHawk.MultiClient/tools/ToolHelpers.cs @@ -72,7 +72,10 @@ namespace BizHawk.MultiClient { if (!watch.IsSeparator) { - Cheat cheat = new Cheat(watch, watch.Value.Value, compare: null, enabled: true); + Global.CheatList.Add( + new Cheat(watch, watch.Value.Value, compare: null, enabled: true) + ); + } }