From c93df8341fc8ca462ee9a160577032949baee74e Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 6 Oct 2013 22:09:16 +0000 Subject: [PATCH] Fix bugs in .chet file saving --- BizHawk.MultiClient/tools/Cheats/CheatList.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.MultiClient/tools/Cheats/CheatList.cs b/BizHawk.MultiClient/tools/Cheats/CheatList.cs index ce3eff110e..7e7612b55b 100644 --- a/BizHawk.MultiClient/tools/Cheats/CheatList.cs +++ b/BizHawk.MultiClient/tools/Cheats/CheatList.cs @@ -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(); }