From 4d57bf7150c2e9e2e6d808a2fe53c9455f2a316b Mon Sep 17 00:00:00 2001 From: "andres.delikat" Date: Fri, 18 Feb 2011 02:48:17 +0000 Subject: [PATCH] Ram Watch - implement signed vs unsigned values --- BizHawk.MultiClient/tools/RamWatch.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/BizHawk.MultiClient/tools/RamWatch.cs b/BizHawk.MultiClient/tools/RamWatch.cs index e04f55ff61..1208f0ae4d 100644 --- a/BizHawk.MultiClient/tools/RamWatch.cs +++ b/BizHawk.MultiClient/tools/RamWatch.cs @@ -17,8 +17,6 @@ namespace BizHawk.MultiClient public partial class RamWatch : Form { //TODO: - //Display value - implement signed vs unsigned - //Currently address is 4 digit hex, but at some point it needs to be smart enough to adjust size based on the emulator core used //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 //Address can be changed, when that event is triggered, open the edit watch dialog @@ -67,10 +65,10 @@ namespace BizHawk.MultiClient WatchListView.Items[x].SubItems[1].Text = String.Format("{0:X}", watchList[x].value); break; case asigned.SIGNED: - WatchListView.Items[x].SubItems[1].Text = watchList[x].value.ToString(); + WatchListView.Items[x].SubItems[1].Text = ((sbyte)watchList[x].value).ToString(); break; case asigned.UNSIGNED: - WatchListView.Items[x].SubItems[1].Text = watchList[x].value.ToString(); //TODO: unsigned int + WatchListView.Items[x].SubItems[1].Text = watchList[x].value.ToString(); break; } }