Ram search: fix equal/not equal for float searches

This commit is contained in:
pjgat09 2015-03-21 00:13:53 +00:00
parent 7e29f04f01
commit c829887f00
1 changed files with 2 additions and 2 deletions

View File

@ -617,14 +617,14 @@ namespace BizHawk.Client.Common
case ComparisonOperator.Equal:
if (_settings.Type == Watch.DisplayType.Float)
{
return watchList.Where(x => ToFloat(GetValue(x.Address)) == _compareValue.Value);
return watchList.Where(x => ToFloat(GetValue(x.Address)) == ToFloat(_compareValue.Value));
}
return watchList.Where(x => GetValue(x.Address) == _compareValue.Value);
case ComparisonOperator.NotEqual:
if (_settings.Type == Watch.DisplayType.Float)
{
return watchList.Where(x => ToFloat(GetValue(x.Address)) != _compareValue.Value);
return watchList.Where(x => ToFloat(GetValue(x.Address)) != ToFloat(_compareValue.Value));
}
return watchList.Where(x => GetValue(x.Address) != _compareValue.Value);