Fixed index bug for comparison type in Load() in CheatList
This commit is contained in:
parent
52c587d712
commit
5dc31d3eb9
|
@ -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<Cheat.COMPARISONTYPE>(vals[9], out comparisonType))
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue