diff options
Diffstat (limited to 'ChocolArm64/Translation/ILOpCodeLog.cs')
-rw-r--r-- | ChocolArm64/Translation/ILOpCodeLog.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ChocolArm64/Translation/ILOpCodeLog.cs b/ChocolArm64/Translation/ILOpCodeLog.cs index ebb042b5..53846f92 100644 --- a/ChocolArm64/Translation/ILOpCodeLog.cs +++ b/ChocolArm64/Translation/ILOpCodeLog.cs @@ -2,16 +2,16 @@ namespace ChocolArm64.Translation { struct ILOpCodeLog : IILEmit { - private string _text; + public string Text { get; } public ILOpCodeLog(string text) { - _text = text; + Text = text; } public void Emit(ILMethodBuilder context) { - context.Generator.EmitWriteLine(_text); + context.Generator.EmitWriteLine(Text); } } }
\ No newline at end of file |