JinxRyu/Ryujinx/OsHle/Objects/ApmISession.cs

13 lines
311 B
C#
Raw Normal View History

2018-02-04 23:08:20 +00:00
namespace Ryujinx.OsHle.Objects
{
class ApmISession
{
public static long SetPerformanceConfiguration(ServiceCtx Context)
{
int PerfMode = Context.RequestData.ReadInt32();
int PerfConfig = Context.RequestData.ReadInt32();
return 0;
}
}
}