Trace Logger - apply the new line hack done for clipboard to the save to file option

This commit is contained in:
adelikat 2014-05-20 18:38:25 +00:00
parent c9c2329651
commit 94b9761b31
1 changed files with 3 additions and 1 deletions

View File

@ -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));
}
}
}