Fix cheat compare value saving

- closes #3567, closes #3523
This commit is contained in:
Morilli 2024-06-22 21:13:37 +02:00
parent 6364475b21
commit ad1f4f40b5
1 changed files with 2 additions and 2 deletions

View File

@ -286,13 +286,13 @@ namespace BizHawk.Client.Common
sb
.Append(cheat.AddressStr).Append('\t')
.Append(cheat.ValueStr).Append('\t')
.Append(cheat.Compare?.ToString() ?? "N").Append('\t')
.Append(cheat.Compare is null ? "N" : cheat.CompareStr).Append('\t')
.Append(cheat.Domain != null ? cheat.Domain.Name : "").Append('\t')
.Append(cheat.Enabled ? '1' : '0').Append('\t')
.Append(cheat.Name).Append('\t')
.Append(cheat.SizeAsChar).Append('\t')
.Append(cheat.TypeAsChar).Append('\t')
.Append((cheat.BigEndian ?? false) ? '1' : '0').Append('\t')
.Append(cheat.BigEndian is true ? '1' : '0').Append('\t')
.Append(cheat.ComparisonType).Append('\t')
.AppendLine();