tracelogger-use \r\n

This commit is contained in:
zeromus 2012-09-30 18:49:16 +00:00
parent 9d1289d8d5
commit f815cb5c62
1 changed files with 2 additions and 2 deletions

View File

@ -278,9 +278,9 @@ namespace BizHawk.MultiClient
foreach (int x in indexes) foreach (int x in indexes)
{ {
blob.Append(Instructions[x]); 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()); Clipboard.SetDataObject(blob.ToString());
} }
} }