mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-06 06:51:26 +12:00
ARMv7: partial disasm functionality, bugfix
This commit is contained in:
parent
e3f55a75a3
commit
819c955cca
9 changed files with 651 additions and 100 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue