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.
This commit is contained in:
jduncanator 2019-10-31 15:50:12 +11:00 committed by GitHub
parent 59f48e3710
commit d059ffb15d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -67,7 +67,7 @@ namespace Ryujinx.HLE.HOS.Ipc
case 3: case 3:
{ {
request = FillResponse(response, 0, 0x500); request = FillResponse(response, 0, 0x1000);
break; break;
} }