From e03d95775f864646834ec8f8a93bacd24b6036d5 Mon Sep 17 00:00:00 2001 From: jduncanator Date: Thu, 31 Oct 2019 13:55:51 +1100 Subject: [PATCH] Increase IPC buffer size 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 beb7878fdd..dd36871a24 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; }