blob: 68b3035426010bb74f5d6662bddeb39835f93067 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
using ChocolArm64.Memory;
using Ryujinx.Core.OsHle.Ipc;
using System;
using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Set
{
class ServiceSetSys : IIpcService
{
private Dictionary<int, ServiceProcessRequest> m_Commands;
public IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
public ServiceSetSys()
{
m_Commands = new Dictionary<int, ServiceProcessRequest>()
{
{ 23, GetColorSetId },
{ 24, SetColorSetId }
};
}
public static long GetColorSetId(ServiceCtx Context)
{
//Use white system theme
Context.ResponseData.Write(1);
return 0;
}
public static long SetColorSetId(ServiceCtx Context)
{
return 0;
}
}
}
|