Add files via upload

This commit is contained in:
Tsubasa0504 2024-08-04 22:56:08 +09:00 committed by GitHub
parent 09e2662ad3
commit aecc7c8919
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -45,13 +45,7 @@ namespace Ryujinx.HLE.HOS.Services.Nim
// CreateServerInterface2(pid, handle<unknown>, u64) -> object<nn::ec::IshopServiceAccessServer>
public ResultCode CreateServerInterface2(ServiceCtx context)
{
context.Device.System.KernelContext.Syscall.CloseHandle(context.Request.HandleDesc.ToCopy[0]);
MakeObject(context, new IShopServiceAccessServer());
Logger.Stub?.PrintStub(LogClass.ServiceNim);
return ResultCode.Success;
return CreateServerInterface(context);
}
}
}