delete AcquireNpadStyleSetUpdateEventHandle which is already in another PR

This commit is contained in:
greggameplayer 2018-07-29 13:54:22 +02:00 committed by GitHub
parent b80939bf5c
commit ff2b3a37f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,7 +27,6 @@ namespace Ryujinx.HLE.OsHle.Services.Hid
{ 101, GetSupportedNpadStyleSet },
{ 102, SetSupportedNpadIdType },
{ 103, ActivateNpad },
{ 106, AcquireNpadStyleSetUpdateEventHandle },
{ 107, DisconnectNpad },
{ 108, GetPlayerLedPattern },
{ 120, SetNpadJoyHoldType },
@ -154,21 +153,6 @@ namespace Ryujinx.HLE.OsHle.Services.Hid
return 0;
}
public long AcquireNpadStyleSetUpdateEventHandle(ServiceCtx Context)
{
int Unknown = Context.RequestData.ReadInt32();
long AppletResourceUserId = Context.RequestData.ReadInt64();
long Unknown1 = Context.RequestData.ReadInt64();
int Handle = Context.Process.HandleTable.OpenHandle(Unknown1);
Context.Response.HandleDesc = IpcHandleDesc.MakeCopy(Handle);
return 0;
}
public long DisconnectNpad(ServiceCtx Context)
{
int Id = Context.RequestData.ReadInt32();