This commit is contained in:
Lordmau5 2018-07-12 01:04:58 +00:00 committed by GitHub
commit 6b83cdde19
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -34,6 +34,7 @@ namespace Ryujinx.HLE.OsHle.Services.Hid
{ 124, SetNpadJoyAssignmentModeDual },
{ 125, MergeSingleJoyAsDualJoy },
{ 128, SetNpadHandheldActivationMode },
{ 130, SwapNpadAssignment },
{ 200, GetVibrationDeviceInfo },
{ 201, SendVibrationValue },
{ 203, CreateActiveVibrationDeviceList },
@ -226,6 +227,13 @@ namespace Ryujinx.HLE.OsHle.Services.Hid
return 0;
}
public long SwapNpadAssignment(ServiceCtx Context)
{
Context.Ns.Log.PrintStub(LogClass.ServiceHid, "Stubbed.");
return 0;
}
public long GetVibrationDeviceInfo(ServiceCtx Context)
{
int VibrationDeviceHandle = Context.RequestData.ReadInt32();