mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 15:38:34 +00:00
3edb66f389
* Add background translation to the CPU * Do not use a separate thread for translation, implement 2 tiers translation * Remove unnecessary usings * Lower MinCallCountForReJit * Remove unused variable
33 lines
847 B
C#
33 lines
847 B
C#
using Ryujinx.Core.OsHle.Ipc;
|
|
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)
|
|
{
|
|
Context.ResponseData.Write((int)Context.Ns.Settings.ThemeColor);
|
|
|
|
return 0;
|
|
}
|
|
|
|
public static long SetColorSetId(ServiceCtx Context)
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
} |