From c829887f0021f0be9635d66fd917e2ca9b1b6ad8 Mon Sep 17 00:00:00 2001 From: pjgat09 Date: Sat, 21 Mar 2015 00:13:53 +0000 Subject: [PATCH] Ram search: fix equal/not equal for float searches --- BizHawk.Client.Common/tools/RamSearchEngine.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Client.Common/tools/RamSearchEngine.cs b/BizHawk.Client.Common/tools/RamSearchEngine.cs index e35ae7527b..56bb121a33 100644 --- a/BizHawk.Client.Common/tools/RamSearchEngine.cs +++ b/BizHawk.Client.Common/tools/RamSearchEngine.cs @@ -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);