diff options
| author | jduncanator <1518948+jduncanator@users.noreply.github.com> | 2020-03-26 08:33:18 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-26 08:33:18 +1100 |
| commit | 82c3df83c43b32510927b7fa710eeb099067ed2e (patch) | |
| tree | 437e51bfa9a2ea0cb7bfa4564730b8c9f22e839a /Ryujinx.HLE/HOS | |
| parent | 5423daea56345237cd10e02870139143d5922aa2 (diff) | |
prepo: Add a MessagePack object formatter (#1034)
Diffstat (limited to 'Ryujinx.HLE/HOS')
| -rw-r--r-- | Ryujinx.HLE/HOS/Services/Prepo/IPrepoService.cs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Prepo/IPrepoService.cs b/Ryujinx.HLE/HOS/Services/Prepo/IPrepoService.cs index c6a6ac56..32a5950d 100644 --- a/Ryujinx.HLE/HOS/Services/Prepo/IPrepoService.cs +++ b/Ryujinx.HLE/HOS/Services/Prepo/IPrepoService.cs @@ -2,11 +2,10 @@ using MsgPack; using MsgPack.Serialization; using Ryujinx.Common; using Ryujinx.Common.Logging; +using Ryujinx.Common.Utilities; using Ryujinx.HLE.HOS.Services.Account.Acc; using Ryujinx.HLE.Utilities; -using System.IO; using System.Text; -using Utf8Json; namespace Ryujinx.HLE.HOS.Services.Prepo { @@ -117,7 +116,7 @@ namespace Ryujinx.HLE.HOS.Services.Prepo } builder.AppendLine($" Room: {room}"); - builder.AppendLine($" Report: {deserializedReport}"); + builder.AppendLine($" Report: {MessagePackObjectFormatter.Format(deserializedReport)}"); return builder.ToString(); } |
