Ryujinx-uplift/Ryujinx/OsHle/Objects/ApmISession.cs

13 lines
311 B
C#
Raw Normal View History

2018-02-05 00:08:20 +01: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;
}
}
}