Update ILogger.cs
This commit is contained in:
parent
dc02ac08ca
commit
33563fd4ae
1 changed files with 2 additions and 2 deletions
|
@ -74,11 +74,11 @@ namespace Ryujinx.HLE.HOS.Services.Lm
|
|||
}
|
||||
else if (Field < LmLogField.Count)
|
||||
{
|
||||
FieldStr = Field + ": \"" + Encoding.UTF8.GetString(Reader.ReadBytes(Size)) + "\"";
|
||||
FieldStr = Field + ": \"" + Encoding.UTF8.GetString(Reader.ReadBytes(Size)).TrimEnd('\r', '\n') + "\"";
|
||||
}
|
||||
else
|
||||
{
|
||||
FieldStr = "Field" + Field + ": \"" + Encoding.UTF8.GetString(Reader.ReadBytes(Size)) + "\"";
|
||||
FieldStr = "Field" + Field + ": \"" + Encoding.UTF8.GetString(Reader.ReadBytes(Size)).TrimEnd('\r', '\n') + "\"";
|
||||
}
|
||||
|
||||
SB.AppendLine(" " + FieldStr);
|
||||
|
|
Loading…
Add table
Reference in a new issue