Trace Logger - make sure there isn't an extra line between instructions when copy/pasting
This commit is contained in:
parent
8cf1d327e3
commit
ff51a948f6
|
@ -259,7 +259,9 @@ namespace BizHawk.Client.EmuHawk
|
||||||
var blob = new StringBuilder();
|
var blob = new StringBuilder();
|
||||||
foreach (int index in indices)
|
foreach (int index in indices)
|
||||||
{
|
{
|
||||||
blob.AppendLine(_instructions[index]);
|
blob.AppendLine(_instructions[index]
|
||||||
|
.Replace("\r", string.Empty)
|
||||||
|
.Replace("\n", string.Empty) );
|
||||||
}
|
}
|
||||||
|
|
||||||
blob.Remove(blob.Length - 2, 2); // 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
|
||||||
|
|
Loading…
Reference in New Issue