From d059ffb15dad8eeb53989ae3b2037b6705289151 Mon Sep 17 00:00:00 2001 From: jduncanator <1518948+jduncanator@users.noreply.github.com> Date: Thu, 31 Oct 2019 15:50:12 +1100 Subject: [PATCH] Increase IPC buffer size (#803) This is a hack, but it works for now. We should really determine a way to automatically calculate the required buffer size to avoid situations where specific IPC calls "overflow" the maximum size. --- Ryujinx.HLE/HOS/Ipc/IpcHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ryujinx.HLE/HOS/Ipc/IpcHandler.cs b/Ryujinx.HLE/HOS/Ipc/IpcHandler.cs index beb7878fd..dd36871a2 100644 --- a/Ryujinx.HLE/HOS/Ipc/IpcHandler.cs +++ b/Ryujinx.HLE/HOS/Ipc/IpcHandler.cs @@ -67,7 +67,7 @@ namespace Ryujinx.HLE.HOS.Ipc case 3: { - request = FillResponse(response, 0, 0x500); + request = FillResponse(response, 0, 0x1000); break; }