ARMv7: partial disasm functionality, bugfix

This commit is contained in:
Nekotekina 2015-02-05 02:52:47 +03:00
parent e3f55a75a3
commit 819c955cca
9 changed files with 651 additions and 100 deletions

View file

@ -112,7 +112,11 @@ struct FileListener : LogListener
if (msg.mType == Log::TTY)
{
text = fmt::escape(text) + "\n";
text = fmt::escape(text);
if (text[text.length() - 1] != '\n')
{
text += '\n';
}
}
}
mFile.Write(text);