소스 검색

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 6 년 전
부모
커밋
d059ffb15d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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;
                         }