mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 10:21:43 +00:00
Fix debug assert on services without pointer buffer (#5599)
This commit is contained in:
parent
153b8bfc7c
commit
3e5c211394
1 changed files with 4 additions and 1 deletions
|
@ -31,7 +31,10 @@ namespace Ryujinx.Horizon.Sdk.Sf.Hipc
|
|||
|
||||
if (allocator != null)
|
||||
{
|
||||
_pointerBuffersBaseAddress = allocator.Allocate((ulong)maxSessions * (ulong)options.PointerBufferSize);
|
||||
if (options.PointerBufferSize != 0)
|
||||
{
|
||||
_pointerBuffersBaseAddress = allocator.Allocate((ulong)maxSessions * (ulong)options.PointerBufferSize);
|
||||
}
|
||||
|
||||
if (options.CanDeferInvokeRequest)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue