From b8ed9b01cb968da7cf65ee4ce74a80eaf3a42f35 Mon Sep 17 00:00:00 2001 From: "andres.delikat" Date: Fri, 18 Feb 2011 07:20:16 +0000 Subject: [PATCH] Ram Watch - Fix crash on removing multiple highlighted items --- BizHawk.MultiClient/tools/RamWatch.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/BizHawk.MultiClient/tools/RamWatch.cs b/BizHawk.MultiClient/tools/RamWatch.cs index 605575b86d..4b6d45a6c2 100644 --- a/BizHawk.MultiClient/tools/RamWatch.cs +++ b/BizHawk.MultiClient/tools/RamWatch.cs @@ -18,7 +18,6 @@ namespace BizHawk.MultiClient { //TODO: //Call AskSave in main client X function - //Multiselect is enabled but only one row can be highlighted by the user //DWORD display //On Movie UP/Down set highlighted items to be what the user had selected (in their new position) //DisplayWatches needs to do value display properly like updatevalues, or just run update values @@ -306,7 +305,7 @@ namespace BizHawk.MultiClient { foreach (int index in indexes) { - watchList.Remove(watchList[index]); + watchList.Remove(watchList[indexes[0]]); //index[0] used since each iteration will make this the correct list index } DisplayWatchList(); }