Ram Search - with the Diff column displayed, don't throw exceptions, Fixes #637. The Diff column still has issues with 4 byte watches though, but this fixes unending exceptions at least

This commit is contained in:
adelikat 2016-10-05 20:58:26 -05:00
parent ab0b78f143
commit 3a36835af2
2 changed files with 14 additions and 3 deletions

View File

@ -232,7 +232,7 @@ namespace BizHawk.Client.Common
get
{
string diff = string.Empty;
byte diffVal = Convert.ToByte(_value - _previous);
int diffVal = _value - _previous;
if (diffVal > 0)
{
diff = "+";
@ -242,7 +242,7 @@ namespace BizHawk.Client.Common
diff = "-";
}
return string.Format("{0}{1}", diff, FormatValue(diffVal));
return string.Format("{0}{1}", diff, FormatValue((byte)Math.Abs(diffVal)));
}
}

View File

@ -245,7 +245,18 @@ namespace BizHawk.Client.Common
{
get
{
return FormatValue((ushort)(_previous - _value));
string diff = string.Empty;
int diffVal = _value - _previous;
if (diffVal > 0)
{
diff = "+";
}
else if (diffVal < 0)
{
diff = "-";
}
return string.Format("{0}{1}", diff, FormatValue((ushort)Math.Abs(diffVal)));
}
}