From b4bcb5755ddf681fb4b9b6330618cbd705c19db3 Mon Sep 17 00:00:00 2001 From: Morilli <35152647+Morilli@users.noreply.github.com> Date: Thu, 29 Aug 2024 05:39:32 +0200 Subject: [PATCH] fix some exception types can these even occur? --- .../tools/RamSearchEngine/RamSearchEngine.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/BizHawk.Client.Common/tools/RamSearchEngine/RamSearchEngine.cs b/src/BizHawk.Client.Common/tools/RamSearchEngine/RamSearchEngine.cs index 535f996561..4ffcf37c24 100644 --- a/src/BizHawk.Client.Common/tools/RamSearchEngine/RamSearchEngine.cs +++ b/src/BizHawk.Client.Common/tools/RamSearchEngine/RamSearchEngine.cs @@ -490,7 +490,7 @@ namespace BizHawk.Client.Common.RamSearchEngine private IEnumerable CompareChanges(IEnumerable watchList) { if (!_settings.IsDetailed()) throw new InvalidCastException(); //TODO matches previous behaviour; was this intended to skip processing? --yoshi - if (CompareValue is not uint compareValue) throw new InvalidCastException(); //TODO typo for IOE? + if (CompareValue is not uint compareValue) throw new InvalidOperationException(); switch (Operator) { default: @@ -528,7 +528,7 @@ namespace BizHawk.Client.Common.RamSearchEngine private IEnumerable CompareDifference(IEnumerable watchList) { - if (CompareValue is not uint compareValue) throw new InvalidCastException(); //TODO typo for IOE? + if (CompareValue is not uint compareValue) throw new InvalidOperationException(); if (_settings.Type is not WatchDisplayType.Float) { switch (Operator)