From b334aab4354e317fb2ef3a2e2f34739249a2d116 Mon Sep 17 00:00:00 2001 From: emmauss Date: Tue, 17 Apr 2018 03:24:42 +0300 Subject: Add special log for stubs (#81) * add stub loglevel * add log for stubbed methods --- Ryujinx.Core/OsHle/Services/Set/ISystemSettingsServer.cs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Ryujinx.Core/OsHle/Services/Set/ISystemSettingsServer.cs') 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; } } -- cgit v1.2.3