Use existing StringBuilder to build the properties string
This commit is contained in:
parent
aea08270ac
commit
f1089aa124
1 changed files with 3 additions and 1 deletions
|
@ -69,7 +69,9 @@ namespace Ryujinx
|
|||
|
||||
foreach (var prop in props)
|
||||
{
|
||||
sb.Append($"{prop.Name}: {prop.GetValue(e.Data)}");
|
||||
sb.Append(prop.Name);
|
||||
sb.Append(": ");
|
||||
sb.Append(prop.GetValue(e.Data));
|
||||
sb.Append(" - ");
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue