From f89e336cd7173f5f642b0b48b6c49bab5a91dc27 Mon Sep 17 00:00:00 2001 From: Ac_K Date: Thu, 26 Apr 2018 02:48:58 +0200 Subject: [PATCH] Update ISystemSettingsServer.cs --- Ryujinx.Core/OsHle/Services/Set/ISystemSettingsServer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ryujinx.Core/OsHle/Services/Set/ISystemSettingsServer.cs b/Ryujinx.Core/OsHle/Services/Set/ISystemSettingsServer.cs index a975cb7127..26d676938e 100644 --- a/Ryujinx.Core/OsHle/Services/Set/ISystemSettingsServer.cs +++ b/Ryujinx.Core/OsHle/Services/Set/ISystemSettingsServer.cs @@ -116,7 +116,7 @@ namespace Ryujinx.Core.OsHle.Services.Set } else { - SettingBuffer = Encoding.ASCII.GetBytes(StringValue); + SettingBuffer = Encoding.ASCII.GetBytes(StringValue + "\0"); } } if (NxSetting is int IntValue)