From 851deec3461555756403ff722154f02407bf066e Mon Sep 17 00:00:00 2001 From: "andres.delikat" Date: Wed, 16 Feb 2011 15:20:33 +0000 Subject: [PATCH] Ram Watch - Fix UpdateValues() so that it only changes the text of the value sub item of each item in the ListView object rather than rebuilding the entire object, should be faster this way --- BizHawk.MultiClient/tools/RamWatch.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.MultiClient/tools/RamWatch.cs b/BizHawk.MultiClient/tools/RamWatch.cs index 0bd8d5cd54..69c8f20e09 100644 --- a/BizHawk.MultiClient/tools/RamWatch.cs +++ b/BizHawk.MultiClient/tools/RamWatch.cs @@ -39,9 +39,9 @@ namespace BizHawk.MultiClient { if (watchList[x].type == atype.SEPARATOR) continue; watchList[x].value = Global.Emulator.MainMemory.PeekByte(watchList[x].address); + WatchListView.Items[x].SubItems[1].Text = watchList[x].value.ToString(); //TODO: readbytes based on type, size, endian values - } - DisplayWatchList(); + } } public RamWatch()