aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/DtorName.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/DtorName.cs')
-rw-r--r--Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/DtorName.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/DtorName.cs b/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/DtorName.cs
index 5cc4e6cf..c65c4cfb 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/DtorName.cs
+++ b/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/DtorName.cs
@@ -4,12 +4,12 @@ namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
{
public class DtorName : ParentNode
{
- public DtorName(BaseNode name) : base(NodeType.DtOrName, name) { }
+ public DtorName(BaseNode Name) : base(NodeType.DtOrName, Name) { }
- public override void PrintLeft(TextWriter writer)
+ public override void PrintLeft(TextWriter Writer)
{
- writer.Write("~");
- Child.PrintLeft(writer);
+ Writer.Write("~");
+ Child.PrintLeft(Writer);
}
}
} \ No newline at end of file