aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Core/OsHle/Services/Set/ISystemSettingsServer.cs
diff options
context:
space:
mode:
authoremmauss <emmausssss@gmail.com>2018-04-17 03:24:42 +0300
committergdkchan <gab.dark.100@gmail.com>2018-04-16 21:24:42 -0300
commitb334aab4354e317fb2ef3a2e2f34739249a2d116 (patch)
treeafd1af412b25c7419cb293d3373994b3f3b25a69 /Ryujinx.Core/OsHle/Services/Set/ISystemSettingsServer.cs
parent494e6dfa1ef0a46263d9ea8bb3c9e5bd3b23f43c (diff)
Add special log for stubs (#81)
* add stub loglevel * add log for stubbed methods
Diffstat (limited to 'Ryujinx.Core/OsHle/Services/Set/ISystemSettingsServer.cs')
-rw-r--r--Ryujinx.Core/OsHle/Services/Set/ISystemSettingsServer.cs4
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;
}
}