diff options
| author | jduncanator <1518948+jduncanator@users.noreply.github.com> | 2019-10-31 15:50:12 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-10-31 15:50:12 +1100 |
| commit | d059ffb15dad8eeb53989ae3b2037b6705289151 (patch) | |
| tree | 7b0a05afc7e8f8bb7a11aae23fb3fc571a3bb185 | |
| parent | 59f48e3710d1e62abb6ba1157705f63e5fffa2c3 (diff) | |
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.
| -rw-r--r-- | Ryujinx.HLE/HOS/Ipc/IpcHandler.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.HLE/HOS/Ipc/IpcHandler.cs b/Ryujinx.HLE/HOS/Ipc/IpcHandler.cs index beb7878f..dd36871a 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; } |
