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)