From f815cb5c627a14f1b100e3765285f34f9ef8d2d5 Mon Sep 17 00:00:00 2001 From: zeromus Date: Sun, 30 Sep 2012 18:49:16 +0000 Subject: [PATCH] tracelogger-use \r\n --- BizHawk.MultiClient/tools/TraceLogger.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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()); } }