Skip to content

Commit

Permalink
Fix mem crash handler not writing newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
Mgamerz committed Nov 7, 2020
1 parent 366c938 commit a92fd54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ALOTInstallerCore/Helpers/MEMIPCHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ void appExited(int code)

void memCrashLogOutput(string str)
{
crashLogBuilder.Append(str);
crashLogBuilder.AppendLine(str);
}

// Run MEM
Expand Down

0 comments on commit a92fd54

Please sign in to comment.