From c8e8cee822cd1c1f7904faaaebfd128083a91015 Mon Sep 17 00:00:00 2001 From: "andres.delikat" Date: Sun, 26 Jun 2011 19:01:06 +0000 Subject: [PATCH] Ram Watch - when saving a new watch, add it to the recent menu --- BizHawk.MultiClient/tools/RamWatch.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/BizHawk.MultiClient/tools/RamWatch.cs b/BizHawk.MultiClient/tools/RamWatch.cs index 816fccb4d0..babf30eaf5 100644 --- a/BizHawk.MultiClient/tools/RamWatch.cs +++ b/BizHawk.MultiClient/tools/RamWatch.cs @@ -682,6 +682,7 @@ namespace BizHawk.MultiClient SaveWatchFile(file.FullName); currentWatchFile = file.FullName; MessageLabel.Text = Path.GetFileName(currentWatchFile) + " saved."; + Global.Config.RecentWatches.Add(file.FullName); } }