From e25ee9324b503857a594d07ccf6c21ca506f3432 Mon Sep 17 00:00:00 2001 From: "andres.delikat" Date: Fri, 18 Feb 2011 02:21:18 +0000 Subject: [PATCH] RamWatch - setting to Hex displays values as hex --- BizHawk.MultiClient/tools/RamWatch.cs | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/BizHawk.MultiClient/tools/RamWatch.cs b/BizHawk.MultiClient/tools/RamWatch.cs index 5513f98b0a..02ad990684 100644 --- a/BizHawk.MultiClient/tools/RamWatch.cs +++ b/BizHawk.MultiClient/tools/RamWatch.cs @@ -22,7 +22,6 @@ namespace BizHawk.MultiClient //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 - //Import images into resource file //Multiselect is enabled but only one row can be highlighted by the user //Make it clear that on edit/new/duplicate watch, address is hex //Validate address box as legit hex number @@ -40,8 +39,18 @@ 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 + switch (watchList[x].signed) + { + case asigned.HEX: + 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(); + break; + case asigned.UNSIGNED: + WatchListView.Items[x].SubItems[1].Text = watchList[x].value.ToString(); //TODO: unsigned int + break; + } } }