Rename missed loop variable
This commit is contained in:
parent
61599e5bce
commit
0a49f45866
1 changed files with 4 additions and 4 deletions
|
@ -73,9 +73,9 @@ namespace Ryujinx.Common.Logging
|
|||
|
||||
sb.Append("Stubbed. ");
|
||||
|
||||
foreach (var Prop in typeof(T).GetProperties())
|
||||
foreach (var prop in typeof(T).GetProperties())
|
||||
{
|
||||
sb.Append($"{Prop.Name}: {Prop.GetValue(obj)}");
|
||||
sb.Append($"{prop.Name}: {prop.GetValue(obj)}");
|
||||
sb.Append(" - ");
|
||||
}
|
||||
|
||||
|
@ -95,9 +95,9 @@ namespace Ryujinx.Common.Logging
|
|||
sb.Append(message);
|
||||
sb.Append(' ');
|
||||
|
||||
foreach (var Prop in typeof(T).GetProperties())
|
||||
foreach (var prop in typeof(T).GetProperties())
|
||||
{
|
||||
sb.Append($"{Prop.Name}: {Prop.GetValue(obj)}");
|
||||
sb.Append($"{prop.Name}: {prop.GetValue(obj)}");
|
||||
sb.Append(" - ");
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue