Ram Watch - fix duplicate watch so that it responds to the user changing settings in the edit watch dialog

This commit is contained in:
andres.delikat 2011-02-18 06:32:26 +00:00
parent 9077371aa0
commit d09e89d879
1 changed files with 1 additions and 2 deletions

View File

@ -17,7 +17,6 @@ namespace BizHawk.MultiClient
public partial class RamWatch : Form
{
//TODO:
//Make a context menu for add/remove/Dup/etc, make the context menu & edit watch windows appear in relation to where they right clicked
//TODO: Call AskSave in main client X function
//Multiselect is enabled but only one row can be highlighted by the user
//DWORD display
@ -325,7 +324,7 @@ namespace BizHawk.MultiClient
if (r.userSelected == true)
{
Changes();
watchList.Add(watchList[x]); //TODO: Fail, add the userselected watchlist
watchList.Add(r.watch);
DisplayWatchList();
}
}