From 5dc31d3eb9f350f09dda9eb23e7b853388e3b33c Mon Sep 17 00:00:00 2001 From: Adam Sturge Date: Sun, 7 Feb 2016 21:54:45 -0800 Subject: [PATCH] Fixed index bug for comparison type in Load() in CheatList --- BizHawk.Client.Common/tools/CheatList.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Client.Common/tools/CheatList.cs b/BizHawk.Client.Common/tools/CheatList.cs index d18bf10679..e735afb3f0 100644 --- a/BizHawk.Client.Common/tools/CheatList.cs +++ b/BizHawk.Client.Common/tools/CheatList.cs @@ -484,7 +484,7 @@ namespace BizHawk.Client.Common } // For backwards compatibility, don't assume these values exist - if (vals.Length > 8) + if (vals.Length > 9) { if(!Enum.TryParse(vals[9], out comparisonType)) {