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