aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Core/OsHle/Services/Set/ServiceSetSys.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2018-03-03 14:04:58 -0300
committergdkchan <gab.dark.100@gmail.com>2018-03-03 14:04:58 -0300
commit7d48886750dadf839eb2bb37e3a81314b5497c36 (patch)
treebcaa7f14974ec7a00d40829ecb9f14805be131c3 /Ryujinx.Core/OsHle/Services/Set/ServiceSetSys.cs
parent646af2498c8ef74546f73ed993f9037e4882493b (diff)
Fix Rename* functions on FspSrv, add a separate class do hold system settings on Switch
Diffstat (limited to 'Ryujinx.Core/OsHle/Services/Set/ServiceSetSys.cs')
-rw-r--r--Ryujinx.Core/OsHle/Services/Set/ServiceSetSys.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx.Core/OsHle/Services/Set/ServiceSetSys.cs b/Ryujinx.Core/OsHle/Services/Set/ServiceSetSys.cs
index 68b30354..41c5d8b3 100644
--- a/Ryujinx.Core/OsHle/Services/Set/ServiceSetSys.cs
+++ b/Ryujinx.Core/OsHle/Services/Set/ServiceSetSys.cs
@@ -22,8 +22,8 @@ namespace Ryujinx.Core.OsHle.IpcServices.Set
public static long GetColorSetId(ServiceCtx Context)
{
- //Use white system theme
- Context.ResponseData.Write(1);
+ Context.ResponseData.Write((int)Context.Ns.Settings.ThemeColor);
+
return 0;
}