From 98a390b3c65996d29204df490d038aa831f451a7 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 25 Feb 2017 15:08:20 -0600 Subject: [PATCH] Default compare type to equal not NOTHING, fixes nes game genie codes generated through the cheat converter, and probably a lot of other platforms. And this is a better default, also silent failures are always bad --- BizHawk.Client.Common/tools/Cheat.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/BizHawk.Client.Common/tools/Cheat.cs b/BizHawk.Client.Common/tools/Cheat.cs index 2beb9c1cea..ad31c30471 100644 --- a/BizHawk.Client.Common/tools/Cheat.cs +++ b/BizHawk.Client.Common/tools/Cheat.cs @@ -237,8 +237,7 @@ namespace BizHawk.Client.Common switch (_comparisonType) { default: - case COMPARISONTYPE.NONE: // This should never happen, but it's here just in case - break; + case COMPARISONTYPE.NONE: // This should never happen, but it's here just in case. adelikat: And yet it does! Cheat Code converter doesn't do this. Changing this to default to equal since 99.9999% of all cheats are going to be equals case COMPARISONTYPE.EQUAL: if (_compare.Value == _watch.ValueNoFreeze) {