Explorar o código

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.
jduncanator %!s(int64=6) %!d(string=hai) anos
pai
achega
d059ffb15d
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      Ryujinx.HLE/HOS/Ipc/IpcHandler.cs

+ 1 - 1
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;
                         }