diff options
Diffstat (limited to 'Ryujinx.Core/OsHle/Services/Set')
| -rw-r--r-- | Ryujinx.Core/OsHle/Services/Set/ISystemSettingsServer.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Ryujinx.Core/OsHle/Services/Set/ISystemSettingsServer.cs b/Ryujinx.Core/OsHle/Services/Set/ISystemSettingsServer.cs index 0be46505..21b737a0 100644 --- a/Ryujinx.Core/OsHle/Services/Set/ISystemSettingsServer.cs +++ b/Ryujinx.Core/OsHle/Services/Set/ISystemSettingsServer.cs @@ -1,4 +1,5 @@ using Ryujinx.Core.OsHle.Ipc; +using Ryujinx.Core.Settings; using System.Collections.Generic; namespace Ryujinx.Core.OsHle.Services.Set @@ -27,6 +28,9 @@ namespace Ryujinx.Core.OsHle.Services.Set public static long SetColorSetId(ServiceCtx Context) { + int ColorSetId = Context.RequestData.ReadInt32(); + + Context.Ns.Settings.ThemeColor = (ColorSet)ColorSetId; return 0; } } |
