diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2018-03-03 14:04:58 -0300 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-03-03 14:04:58 -0300 |
| commit | 7d48886750dadf839eb2bb37e3a81314b5497c36 (patch) | |
| tree | bcaa7f14974ec7a00d40829ecb9f14805be131c3 /Ryujinx.Core/OsHle/Services/Set/ServiceSetSys.cs | |
| parent | 646af2498c8ef74546f73ed993f9037e4882493b (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.cs | 4 |
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; } |
