Trace Logger - apply the new line hack done for clipboard to the save to file option
This commit is contained in:
parent
c9c2329651
commit
94b9761b31
|
@ -221,7 +221,9 @@ namespace BizHawk.Client.EmuHawk
|
|||
{
|
||||
foreach (var instruction in _instructions)
|
||||
{
|
||||
sw.WriteLine(instruction);
|
||||
sw.WriteLine(instruction
|
||||
.Replace("\r", string.Empty)
|
||||
.Replace("\n", string.Empty));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue