diff --git a/BizHawk.MultiClient/tools/TraceLogger.cs b/BizHawk.MultiClient/tools/TraceLogger.cs index 0b026192f9..c45b4d4bb3 100644 --- a/BizHawk.MultiClient/tools/TraceLogger.cs +++ b/BizHawk.MultiClient/tools/TraceLogger.cs @@ -278,9 +278,9 @@ namespace BizHawk.MultiClient foreach (int x in indexes) { blob.Append(Instructions[x]); - blob.Append('\n'); + blob.Append("\r\n"); } - blob.Remove(blob.Length - 1, 1); //Lazy way to not have a line break at the end + blob.Remove(blob.Length - 2, 2); //Lazy way to not have a line break at the end Clipboard.SetDataObject(blob.ToString()); } }