Fix bugs in .chet file saving

This commit is contained in:
adelikat 2013-10-06 22:09:16 +00:00
parent 8557c96758
commit c93df8341f
1 changed files with 2 additions and 2 deletions

View File

@ -525,9 +525,9 @@ namespace BizHawk.MultiClient
.Append(cheat.Compare.HasValue ? cheat.Compare.Value : 'N').Append('\t')
.Append(cheat.Domain != null ? cheat.Domain.Name : String.Empty).Append('\t')
.Append(cheat.Enabled ? '1' : '0').Append('\t')
.Append(cheat.Name)
.Append(cheat.SizeAsChar).Append('\t')
.Append(cheat.Name).Append('\t')
.Append(cheat.SizeAsChar).Append('\t')
.Append(cheat.TypeAsChar).Append('\t')
.Append(cheat.BigEndian.Value ? '1' : '0').Append('\t')
.AppendLine();
}