From aa75bd52e9f2c29014b6bee08d66ef00470a2e23 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 21 Jun 2015 00:21:36 +0000 Subject: [PATCH] When adding an address to ram watch from another ram tool, don't load ram watch if it is already open --- BizHawk.Client.EmuHawk/tools/ToolManager.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/BizHawk.Client.EmuHawk/tools/ToolManager.cs b/BizHawk.Client.EmuHawk/tools/ToolManager.cs index 0f7984e864..334f2c6594 100644 --- a/BizHawk.Client.EmuHawk/tools/ToolManager.cs +++ b/BizHawk.Client.EmuHawk/tools/ToolManager.cs @@ -753,7 +753,10 @@ namespace BizHawk.Client.EmuHawk public void LoadRamWatch(bool loadDialog) { - Load(); + if (!IsLoaded()) + { + Load(); + } if (IsAvailable()) // Just because we attempted to load it, doesn't mean it was, the current core may not have the correct dependencies {