From 7bb3e04105498f7776ea58dec0eb9d67d567e3a4 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 30 Jan 2016 18:28:29 -0500 Subject: [PATCH] Ram Search - fix having lots of leading zeros in the different by box --- BizHawk.Client.EmuHawk/tools/Watch/RamSearch.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/BizHawk.Client.EmuHawk/tools/Watch/RamSearch.cs b/BizHawk.Client.EmuHawk/tools/Watch/RamSearch.cs index e9c54c1f8d..51c494ee52 100644 --- a/BizHawk.Client.EmuHawk/tools/Watch/RamSearch.cs +++ b/BizHawk.Client.EmuHawk/tools/Watch/RamSearch.cs @@ -133,6 +133,7 @@ namespace BizHawk.Client.EmuHawk LoadConfigSettings(); SpecificValueBox.ByteSize = _settings.Size; SpecificValueBox.Type = _settings.Type; + DifferentByBox.Type = Common.DisplayType.Unsigned; MessageLabel.Text = string.Empty; SpecificAddressBox.MaxLength = (MemoryDomains.MainMemory.Size - 1).NumHexDigits();