Ram search: fix equal/not equal for float searches
This commit is contained in:
parent
7e29f04f01
commit
c829887f00
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue