Merge pull request #3 from Ryujinx/master

nim:eca : Stub CreateServerInterface2 (#7128)
This commit is contained in:
Otozinclus 2024-08-18 05:36:48 +02:00 committed by GitHub
commit 81c369fbc8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -40,5 +40,12 @@ namespace Ryujinx.HLE.HOS.Services.Nim
return ResultCode.Success;
}
[CommandCmif(5)] // 17.0.0+
// CreateServerInterface2(pid, handle<unknown>, u64) -> object<nn::ec::IshopServiceAccessServer>
public ResultCode CreateServerInterface2(ServiceCtx context)
{
return CreateServerInterface(context);
}
}
}